18 | | add_contextual_help($current_screen, |
19 | | '<p>' . __('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 second option here. Note that your privacy is not complete; your site is still visible on the web.') . '</p>' . |
20 | | '<p>' . __('When this setting is in effect a reminder is shown in the Right Now box of the Dashboard that says, “Search Engines Blocked,” to remind you that your site is not being crawled.') . '</p>' . |
21 | | '<p>' . __('You must click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>' . |
22 | | '<p><strong>' . __('For more information:') . '</strong></p>' . |
23 | | '<p>' . __('<a href="http://codex.wordpress.org/Settings_Privacy_Screen" target="_blank">Documentation on Privacy Settings</a>') . '</p>' . |
24 | | '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' |
| 18 | $search_indexing = '<p>' . __('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 second option here. When the second option is selected most major search services will not include your site in their results. Note that this is not a security setting; your site is still visible on the web.') . '</p>'; |
| 19 | $search_indexing .= '<p>' . __('When this setting is in effect a reminder is shown in the Right Now box of the Dashboard that says, “Search Engines Blocked,” to remind you that your site is not being crawled.') . '</p>'; |
| 20 | $search_indexing .= '<p>' . __('You must click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>'; |
| 21 | |
| 22 | $current_screen->add_help_tab( array( |
| 23 | 'id' => 'search-indexing-info', |
| 24 | 'title' => __('Search Indexing Info'), |
| 25 | 'content' => $search_indexing |
| 26 | ) ); |
| 27 | |
| 28 | $current_screen->add_help_sidebar( |
| 29 | '<p><strong>' . __('For more information:') . '</strong></p>' . |
| 30 | '<p>' . __('<a href="http://codex.wordpress.org/Settings_Privacy_Screen" target="_blank">Documentation on Privacy Settings</a>') . '</p>' . |
| 31 | '<p>' . __('<a href="http://en.wikipedia.org/wiki/Robots.txt" target="_blank">About search indexing & Privacy</a>') . '</p>' . |
| 32 | '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' |