]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/options-privacy.php
WordPress 3.4.2
[autoinstalls/wordpress.git] / wp-admin / options-privacy.php
1 <?php
2 /**
3  * Privacy Options Settings Administration Screen.
4  *
5  * @package WordPress
6  * @subpackage Administration
7  */
8
9 /** Load WordPress Administration Bootstrap */
10 require_once('./admin.php');
11
12 if ( ! current_user_can( 'manage_options' ) )
13         wp_die( __( 'You do not have sufficient permissions to manage options for this site.' ) );
14
15 $title = __('Privacy Settings');
16 $parent_file = 'options-general.php';
17
18 get_current_screen()->add_help_tab( array(
19         'id'      => 'overview',
20         'title'   => __('Overview'),
21         'content' => '<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 radio button next to &#8220;Ask search engines not to index this site&#8221; and click the Save Changes button at the bottom of the screen. Note that your privacy is not complete; your site is still visible on the web.') . '</p>' .
22                 '<p>' . __('When this setting is in effect a reminder is shown in the Right Now box of the Dashboard that says, &#8220;Search Engines Blocked,&#8221; to remind you that your site is not being crawled.') . '</p>',
23 ) );
24
25 get_current_screen()->set_help_sidebar(
26         '<p><strong>' . __('For more information:') . '</strong></p>' .
27         '<p>' . __('<a href="http://codex.wordpress.org/Settings_Privacy_Screen" target="_blank">Documentation on Privacy Settings</a>') . '</p>' .
28         '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
29 );
30
31 include('./admin-header.php');
32 ?>
33
34 <div class="wrap">
35 <?php screen_icon(); ?>
36 <h2><?php echo esc_html( $title ); ?></h2>
37
38 <form method="post" action="options.php">
39 <?php settings_fields('privacy'); ?>
40
41 <table class="form-table">
42 <tr valign="top">
43 <th scope="row"><?php _e( 'Site Visibility' ); ?> </th>
44 <td><fieldset><legend class="screen-reader-text"><span><?php _e( 'Site Visibility' ); ?> </span></legend>
45 <input id="blog-public" type="radio" name="blog_public" value="1" <?php checked('1', get_option('blog_public')); ?> />
46 <label for="blog-public"><?php _e( 'Allow search engines to index this site.' );?></label><br/>
47 <input id="blog-norobots" type="radio" name="blog_public" value="0" <?php checked('0', get_option('blog_public')); ?> />
48 <label for="blog-norobots"><?php _e( 'Ask search engines not to index this site.' ); ?></label>
49 <p class="description"><?php _e( 'Note: Neither of these options blocks access to your site &mdash; it is up to search engines to honor your request.' ); ?></p>
50 <?php do_action('blog_privacy_selector'); ?>
51 </fieldset></td>
52 </tr>
53 <?php do_settings_fields('privacy', 'default'); ?>
54 </table>
55
56 <?php do_settings_sections('privacy'); ?>
57
58 <?php submit_button(); ?>
59 </form>
60
61 </div>
62
63 <?php include('./admin-footer.php') ?>