From 36d58abc8e418ba0fb096ecbe6360d823a7530f2 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 23 Oct 2020 18:07:13 +0000 Subject: [PATCH] Help/About: Clarify that discouraging search engines does not prevent them from crawling the site. Props carike, garrett-eclipse, hellofromTonya. Fixes #51274. Built from https://develop.svn.wordpress.org/trunk@49287 git-svn-id: http://core.svn.wordpress.org/trunk@49049 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/options-reading.php | 5 +++-- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/wp-admin/options-reading.php b/wp-admin/options-reading.php index 39d5645673..2b42b8fe4e 100644 --- a/wp-admin/options-reading.php +++ b/wp-admin/options-reading.php @@ -41,8 +41,9 @@ get_current_screen()->add_help_tab( array( 'id' => 'site-visibility', 'title' => has_action( 'blog_privacy_selector' ) ? __( 'Site visibility' ) : __( 'Search engine visibility' ), - 'content' => '

' . __( 'You can choose whether or not your site will be crawled by robots, ping services, and spiders. If you want those services to ignore your site, click the checkbox next to “Discourage search engines from indexing this site” and click the Save Changes button at the bottom of the screen. Note that your privacy is not complete; your site is still visible on the web.' ) . '

' . - '

' . __( 'When this setting is in effect, a reminder is shown in the At a Glance box of the Dashboard that says, “Search engines discouraged,” to remind you that your site is not being crawled.' ) . '

', + 'content' => '

' . __( 'You can choose whether or not your site will be crawled by robots, ping services, and spiders. If you want those services to ignore your site, click the checkbox next to “Discourage search engines from indexing this site” and click the Save Changes button at the bottom of the screen.' ) . '

' . + '

' . __( 'Note that even when set to discourage search engines, your site is still visible on the web and not all search engines adhere to this directive.' ) . '

' . + '

' . __( 'When this setting is in effect, a reminder is shown in the At a Glance box of the Dashboard that says, “Search engines discouraged”, to remind you that you have directed search engines to not crawl your site.' ) . '

', ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index e7e561119c..7b2bb523b0 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.6-beta1-49286'; +$wp_version = '5.6-beta1-49287'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.