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.
221 *222 * Hooking to this action also converts the 'Search engine visibility' heading to the more223 * open-ended 'Site visibility' heading.224 *225 * @since 2.1.0226 */227 do_action( 'blog_privacy_selector' );228 ?>229<?phpelse:?>230<labelfor="blog_public"><inputname="blog_public"type="checkbox"id="blog_public"value="0"<?phpchecked('0',get_option('blog_public'));?>/>231<?php_e('Discourage search engines from indexing this site');?></label>232<pclass="description"><?php_e('It is up to search engines to honor this request.');?></p>233<?phpendif;?>
History
Introduced in 2.1.0. Unchanged from 6.7.7 through 7.1.0.