diff --git a/src/wp-admin/includes/class-wp-debug-data.php b/src/wp-admin/includes/class-wp-debug-data.php
index 42f9a788f7..ba94c63027 100644
a
|
b
|
class WP_Debug_Data { |
40 | 40 | $permalink_structure = get_option( 'permalink_structure' ); |
41 | 41 | $is_ssl = is_ssl(); |
42 | 42 | $users_can_register = get_option( 'users_can_register' ); |
| 43 | $blog_public = get_option( 'blog_public' ); |
43 | 44 | $default_comment_status = get_option( 'default_comment_status' ); |
44 | 45 | $is_multisite = is_multisite(); |
45 | 46 | $core_version = get_bloginfo( 'version' ); |
… |
… |
class WP_Debug_Data { |
103 | 104 | 'value' => $users_can_register ? __( 'Yes' ) : __( 'No' ), |
104 | 105 | 'debug' => $users_can_register, |
105 | 106 | ), |
| 107 | 'blog_public' => array( |
| 108 | 'label' => __( 'Is this site visible to search engines?' ), |
| 109 | 'value' => $blog_public ? __( 'Yes' ) : __( 'No' ), |
| 110 | 'debug' => $blog_public, |
| 111 | ), |
106 | 112 | 'default_comment_status' => array( |
107 | 113 | 'label' => __( 'Default comment status' ), |
108 | 114 | 'value' => 'open' === $default_comment_status ? _x( 'Open', 'comment status' ) : _x( 'Closed', 'comment status' ), |
diff --git a/src/wp-admin/includes/dashboard.php b/src/wp-admin/includes/dashboard.php
index c7edaf6c08..0099dc4e51 100644
a
|
b
|
function wp_dashboard_right_now() { |
368 | 368 | * |
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 | 374 | echo "<p><a href='options-reading.php'$title_attr>$content</a></p>"; |