Changeset 4495 for trunk/wp-admin/options-privacy.php
- Timestamp:
- 11/19/2006 07:56:05 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-privacy.php
r4480 r4495 7 7 include('./admin-header.php'); 8 8 ?> 9 9 10 10 <div class="wrap"> 11 11 <h2><?php _e('Privacy Options') ?></h2> 12 <form method="post" action="options.php"> 12 <form method="post" action="options.php"> 13 13 <?php wp_nonce_field('update-options') ?> 14 <table class="optiontable"> 15 <tr valign="top"> 16 <th scope="row"><?php _e('Blog visibility:') ?> </th> 14 <table class="optiontable"> 15 <tr valign="top"> 16 <th scope="row"><?php _e('Blog visibility:') ?> </th> 17 17 <td> 18 18 <p><input id="blog-public" type="radio" name="blog_public" value="1" <?php checked('1', get_option('blog_public')); ?> /> … … 21 21 <label for="blog-norobots"><?php _e('I would like to block search engines, but allow normal visitors'); ?></label></p> 22 22 <?php do_action('blog_privacy_selector'); ?> 23 </td> 23 </td> 24 24 </tr> 25 </table> 25 </table> 26 26 27 27 <p class="submit"><input type="submit" name="Submit" value="<?php _e('Update Options »') ?>" /> 28 <input type="hidden" name="action" value="update" /> 29 <input type="hidden" name="page_options" value="blog_public" /> 28 <input type="hidden" name="action" value="update" /> 29 <input type="hidden" name="page_options" value="blog_public" /> 30 30 </p> 31 31 </form> 32 32 33 </div> 33 </div> 34 34 35 35 <?php include('./admin-footer.php') ?>
Note: See TracChangeset
for help on using the changeset viewer.