2006-10-25 22:55:05 +00:00
<? php
require_once ( './admin.php' );
2006-11-18 07:31:29 +00:00
2008-02-14 00:39:38 +00:00
$title = __ ( 'Privacy Settings' );
2006-11-18 07:31:29 +00:00
$parent_file = 'options-general.php' ;
2006-10-25 22:55:05 +00:00
include ( './admin-header.php' );
?>
2006-11-19 07:56:05 +00:00
2006-10-25 22:55:05 +00:00
<div class="wrap">
2008-02-14 00:39:38 +00:00
<h2><?php _e('Privacy Settings') ?></h2>
2006-11-19 07:56:05 +00:00
<form method="post" action="options.php">
2006-10-25 22:55:05 +00:00
<?php wp_nonce_field('update-options') ?>
2008-02-24 04:33:10 +00:00
<table class="form-table">
2006-11-19 07:56:05 +00:00
<tr valign="top">
2008-02-14 05:19:39 +00:00
<th scope="row"><?php _e('Blog Visibility') ?> </th>
2006-10-25 22:55:05 +00:00
<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'); ?>
2006-11-19 07:56:05 +00:00
</td>
2006-10-25 22:55:05 +00:00
</tr>
2006-11-19 07:56:05 +00:00
</table>
2006-10-25 22:55:05 +00:00
2008-02-14 02:46:08 +00:00
<p class="submit"><input type="submit" name="Submit" value="<?php _e('Save Changes') ?>" />
2006-11-19 07:56:05 +00:00
<input type="hidden" name="action" value="update" />
<input type="hidden" name="page_options" value="blog_public" />
2006-10-25 22:55:05 +00:00
</p>
</form>
2006-11-19 07:56:05 +00:00
</div>
2006-10-25 22:55:05 +00:00
<?php include('./admin-footer.php') ?>