Enables the legacy 'Site visibility' privacy options.
Description
By default the privacy options form displays a single checkbox to 'discourage' search engines from indexing the site. Hooking to this action serves a dual purpose: <ol> <li>Disable the single checkbox in favor of a multiple-choice list of radio buttons.</li> <li>Open the door to adding additional radio button choices to the list.</li> </ol> Hooking to this action also converts the 'Search engine visibility' heading to the more open-ended 'Site visibility' heading.
234 *235 * Hooking to this action also converts the 'Search engine visibility' heading to the more236 * open-ended 'Site visibility' heading.237 *238 * @since 2.1.0239 */240 do_action( 'blog_privacy_selector' );241 ?>242<?phpelse:?>243<labelfor="blog_public"><inputname="blog_public"type="checkbox"id="blog_public"value="0"<?phpchecked('0',get_option('blog_public'));?>/>244<?php_e('Discourage search engines from indexing this site');?></label>245<pclass="description"><?php_e('It is up to search engines to honor this request.');?></p>246<?phpendif;?>
History
Introduced in 2.1.0. Unchanged from 6.7.7 through 7.1.0.