mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-03 01:09:39 +01:00
67d5a6d3c7
git-svn-id: http://svn.automattic.com/wordpress/trunk@4196 1a063a9b-81f0-0310-95a4-ce76da25c4cd
36 lines
1.3 KiB
PHP
36 lines
1.3 KiB
PHP
<?php
|
|
require_once('./admin.php');
|
|
|
|
$title = __('Privacy Options');
|
|
$parent_file = 'options-general.php';
|
|
|
|
include('./admin-header.php');
|
|
?>
|
|
|
|
<div class="wrap">
|
|
<h2><?php _e('Privacy Options') ?></h2>
|
|
<form method="post" action="options.php">
|
|
<?php wp_nonce_field('update-options') ?>
|
|
<table class="optiontable">
|
|
<tr valign="top">
|
|
<th scope="row"><?php _e('Blog visibility:') ?> </th>
|
|
<td>
|
|
<p><input id="blog-public" type="radio" name="blog_public" value="1" <?php checked('1', get_option('blog_public')); ?> />
|
|
<label for="blog-public"><?php _e('I would like my blog to be visible to everyone, including search engines (like Google, Sphere, Technorati) and archivers');?></label></p>
|
|
<p><input id="blog-norobots" type="radio" name="blog_public" value="0" <?php checked('0', get_option('blog_public')); ?> />
|
|
<label for="blog-norobots"><?php _e('I would like to block search engines, but allow normal visitors'); ?></label></p>
|
|
<?php do_action('blog_privacy_selector'); ?>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<p class="submit"><input type="submit" name="Submit" value="<?php _e('Update Options »') ?>" />
|
|
<input type="hidden" name="action" value="update" />
|
|
<input type="hidden" name="page_options" value="blog_public" />
|
|
</p>
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<?php include('./admin-footer.php') ?>
|