Changeset 4196 for trunk/wp-admin/options-reading.php
- Timestamp:
- 09/19/2006 06:11:42 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-reading.php
r4144 r4196 12 12 <form name="form1" method="post" action="options.php"> 13 13 <?php wp_nonce_field('update-options') ?> 14 14 <p class="submit"><input type="submit" name="Submit" value="<?php _e('Update Options »') ?>" /></p> 15 15 <?php if ( get_pages() ): ?> 16 16 <fieldset class="options"> 17 17 <legend><?php _e('Front Page') ?></legend> 18 <table width="100%" cellspacing="2" cellpadding="5" class=" editform">18 <table width="100%" cellspacing="2" cellpadding="5" class="optiontable editform"> 19 19 <tr valign="top"> 20 20 <th width="33%" scope="row"><?php _e('Front page displays:')?></th> 21 21 <td> 22 < label>22 <p><label> 23 23 <input name="show_on_front" type="radio" value="posts" class="tog" <?php checked('posts', get_option('show_on_front')); ?> /> 24 <?php _e(' Thelatest posts'); ?>24 <?php _e('Your latest posts'); ?> 25 25 </label> 26 < br />27 < label>26 </p> 27 <p><label> 28 28 <input name="show_on_front" type="radio" value="page" class="tog" <?php checked('page', get_option('show_on_front')); ?> /> 29 <?php printf(__('A static <a href="%s">page</a> (select below)'), 'edit-pages.php'); ?>29 <?php printf(__('A <a href="%s">static page</a> (select below)'), 'edit-pages.php'); ?> 30 30 </label> 31 </p> 31 32 <ul> 32 <li><?php printf(__(' Show this page on the front page: %s'), wp_dropdown_pages("name=page_on_front&echo=0&show_option_none=".__('- Select -')."&selected=" . get_option('page_on_front'))); ?></li>33 <li><?php printf(__(' Show the latest posts on this page: %s'), wp_dropdown_pages("name=page_for_posts&echo=0&show_option_none=".__('- Select -')."&selected=" . get_option('page_for_posts'))); ?></li>33 <li><?php printf(__('Front page: %s'), wp_dropdown_pages("name=page_on_front&echo=0&show_option_none=".__('- Select -')."&selected=" . get_option('page_on_front'))); ?></li> 34 <li><?php printf(__('Posts page: %s'), wp_dropdown_pages("name=page_for_posts&echo=0&show_option_none=".__('- Select -')."&selected=" . get_option('page_for_posts'))); ?></li> 34 35 </ul> 35 36 <?php if ( 'page' == get_option('show_on_front') && get_option('page_for_posts') == get_option('page_on_front') ) : ?> … … 49 50 <fieldset class="options"> 50 51 <legend><?php _e('Blog Pages') ?></legend> 51 <table width="100%" cellspacing="2" cellpadding="5" class=" editform">52 <table width="100%" cellspacing="2" cellpadding="5" class="optiontable editform"> 52 53 <tr valign="top"> 53 54 <th width="33%" scope="row"><?php _e('Show at most:') ?></th> … … 65 66 <fieldset class="options"> 66 67 <legend><?php _e('Syndication Feeds') ?></legend> 67 <table width="100%" cellspacing="2" cellpadding="5" class=" editform">68 <table width="100%" cellspacing="2" cellpadding="5" class="optiontable editform"> 68 69 <tr valign="top"> 69 70 <th width="33%" scope="row"><?php _e('Show the most recent:') ?></th> … … 73 74 <th scope="row"><?php _e('For each article, show:') ?> </th> 74 75 <td> 75 <label><input name="rss_use_excerpt" type="radio" value="0" <?php checked(0, get_option('rss_use_excerpt')); ?> /> <?php _e('Full text') ?></label><br /> 76 <label><input name="rss_use_excerpt" type="radio" value="1" <?php checked(1, get_option('rss_use_excerpt')); ?> /> <?php _e('Summary') ?></label> 76 <p><label><input name="rss_use_excerpt" type="radio" value="0" <?php checked(0, get_option('rss_use_excerpt')); ?> /> <?php _e('Full text') ?></label><br /> 77 <label><input name="rss_use_excerpt" type="radio" value="1" <?php checked(1, get_option('rss_use_excerpt')); ?> /> <?php _e('Summary') ?></label></p> 78 <p><?php _e('Note: If you use the <code><--more--></code> feature, it will cut off posts in RSS feeds.'); ?></p> 77 79 </td> 78 80 </tr> 79 81 </table> 80 82 </fieldset> 81 <table width="100%" cellspacing="2" cellpadding="5" class=" editform">83 <table width="100%" cellspacing="2" cellpadding="5" class="optiontable editform"> 82 84 <tr valign="top"> 83 85 <th width="33%" scope="row"><?php _e('Encoding for pages and feeds:') ?></th>
Note: See TracChangeset
for help on using the changeset viewer.