Changeset 47859 for trunk/src/wp-admin/includes/dashboard.php
- Timestamp:
- 05/27/2020 02:32:00 PM (6 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/includes/dashboard.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/dashboard.php
r47808 r47859 347 347 348 348 /** 349 * Filters the link title attribute for the 'Search Engines Discouraged'349 * Filters the link title attribute for the 'Search engines discouraged' 350 350 * message displayed in the 'At a Glance' dashboard widget. 351 351 * … … 360 360 361 361 /** 362 * Filters the link label for the 'Search Engines Discouraged' message362 * Filters the link label for the 'Search engines discouraged' message 363 363 * displayed in the 'At a Glance' dashboard widget. 364 364 * … … 369 369 * @param string $content Default text. 370 370 */ 371 $content = apply_filters( 'privacy_on_link_text', __( 'Search Engines Discouraged' ) );371 $content = apply_filters( 'privacy_on_link_text', __( 'Search engines discouraged' ) ); 372 372 $title_attr = '' === $title ? '' : " title='$title'"; 373 373 374 echo "<p ><a href='options-reading.php'$title_attr>$content</a></p>";374 echo "<p class='search-engines-info'><a href='options-reading.php'$title_attr>$content</a></p>"; 375 375 } 376 376 ?>
Note: See TracChangeset
for help on using the changeset viewer.