Changeset 4196 for trunk/wp-admin/options-privacy.php
- Timestamp:
- 09/19/2006 06:11:42 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-privacy.php
r4165 r4196 16 16 <th scope="row"><?php _e('Blog visibility:') ?> </th> 17 17 <td> 18 <input id="blog-public" type="radio" name="blog_public" value="1" <?php checked('1', get_option('blog_public')); ?> /> 19 <label for="blog-public"><?php _e('I would like my blog to be visible to anyone who visits, including search engines and archivers') ?></label> 20 <br /> 21 <input id="blog-norobots" type="radio" name="blog_public" value="0" <?php checked('0', get_option('blog_public')); ?> /> 22 <label for="blog-norobots"><?php _e('I would like to block search engines, but allow normal folks') ?></label> 18 <p><input id="blog-public" type="radio" name="blog_public" value="1" <?php checked('1', get_option('blog_public')); ?> /> 19 <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> 20 <p><input id="blog-norobots" type="radio" name="blog_public" value="0" <?php checked('0', get_option('blog_public')); ?> /> 21 <label for="blog-norobots"><?php _e('I would like to block search engines, but allow normal visitors'); ?></label></p> 23 22 <?php do_action('blog_privacy_selector'); ?> 24 23 </td>
Note: See TracChangeset
for help on using the changeset viewer.