Changeset 21838 for trunk/wp-admin/includes/dashboard.php
- Timestamp:
- 09/13/2012 05:28:57 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/dashboard.php
r21789 r21838 393 393 echo '</p>'; 394 394 395 // Check if search engines are blocked.395 // Check if search engines are asked not to index this site. 396 396 if ( !is_network_admin() && !is_user_admin() && current_user_can('manage_options') && '1' != get_option('blog_public') ) { 397 397 $title = apply_filters('privacy_on_link_title', __('Your site is asking search engines not to index its content') ); 398 $content = apply_filters('privacy_on_link_text', __('Search Engines Blocked') );399 400 echo "<p><a href='options- privacy.php' title='$title'>$content</a></p>";398 $content = apply_filters('privacy_on_link_text', __('Search Engines Discouraged') ); 399 400 echo "<p><a href='options-reading.php' title='$title'>$content</a></p>"; 401 401 } 402 402 … … 1261 1261 <p><?php _e( 'Here are a few easy things you can do to get your feet wet. Make sure to click Save on each Settings screen.' ); ?></p> 1262 1262 <ul> 1263 <li><?php echo sprintf( __( '<a href="%s">Choose your privacy setting</a>' ), esc_url( admin_url('options-privacy.php') ) ); ?></li>1264 1263 <li><?php echo sprintf( __( '<a href="%s">Select your tagline and time zone</a>' ), esc_url( admin_url('options-general.php') ) ); ?></li> 1265 1264 <li><?php echo sprintf( __( '<a href="%s">Turn comments on or off</a>' ), esc_url( admin_url('options-discussion.php') ) ); ?></li>
Note: See TracChangeset
for help on using the changeset viewer.