Changeset 7883 for trunk/wp-admin/options-reading.php
- Timestamp:
- 05/04/2008 10:37:06 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-reading.php
r7498 r7883 16 16 <tr valign="top"> 17 17 <th scope="row"><?php _e('Front page displays')?></th> 18 <td> 18 <td><fieldset><legend class="hidden"><?php _e('Front page displays')?></legend> 19 19 <p><label> 20 20 <input name="show_on_front" type="radio" value="posts" class="tog" <?php checked('posts', get_option('show_on_front')); ?> /> … … 28 28 </p> 29 29 <ul> 30 <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>31 <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>30 <li><?php printf("<label for='page_on_front'>".__('Front page: %s')."</label>", wp_dropdown_pages("name=page_on_front&echo=0&show_option_none=".__('- Select -')."&selected=" . get_option('page_on_front'))); ?></li> 31 <li><?php printf("<label for='page_for_posts'>".__('Posts page: %s')."</label>", wp_dropdown_pages("name=page_for_posts&echo=0&show_option_none=".__('- Select -')."&selected=" . get_option('page_for_posts'))); ?></li> 32 32 </ul> 33 33 <?php if ( 'page' == get_option('show_on_front') && get_option('page_for_posts') == get_option('page_on_front') ) : ?> … … 38 38 </div> 39 39 <?php endif; ?> 40 </ td>40 </fieldset></td> 41 41 </tr> 42 42 <?php endif; ?> 43 43 <tr valign="top"> 44 <th scope="row">< ?php _e('Blog pages show at most') ?></th>44 <th scope="row"><label for="posts_per_page"><?php _e('Blog pages show at most') ?></label></th> 45 45 <td> 46 46 <input name="posts_per_page" type="text" id="posts_per_page" value="<?php form_option('posts_per_page'); ?>" size="3" /> <?php _e('posts') ?> … … 48 48 </tr> 49 49 <tr valign="top"> 50 <th scope="row">< ?php _e('Syndication feeds show the most recent') ?></th>50 <th scope="row"><label for="posts_per_rss"><?php _e('Syndication feeds show the most recent') ?></label></th> 51 51 <td><input name="posts_per_rss" type="text" id="posts_per_rss" value="<?php form_option('posts_per_rss'); ?>" size="3" /> <?php _e('posts') ?></td> 52 52 </tr> 53 53 <tr valign="top"> 54 54 <th scope="row"><?php _e('For each article in a feed, show') ?> </th> 55 <td> 55 <td><fieldset><legend class="hidden"><?php _e('For each article in a feed, show') ?> </legend> 56 56 <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 /> 57 57 <label><input name="rss_use_excerpt" type="radio" value="1" <?php checked(1, get_option('rss_use_excerpt')); ?> /> <?php _e('Summary') ?></label></p> 58 </ td>58 </fieldset></td> 59 59 </tr> 60 60 61 61 <tr valign="top"> 62 <th scope="row">< ?php _e('Encoding for pages and feeds') ?></th>62 <th scope="row"><label for="blog_charset"><?php _e('Encoding for pages and feeds') ?></label></th> 63 63 <td><input name="blog_charset" type="text" id="blog_charset" value="<?php form_option('blog_charset'); ?>" size="20" class="code" /><br /> 64 64 <?php _e('The character encoding you write your blog in (UTF-8 is <a href="http://developer.apple.com/documentation/macos8/TextIntlSvcs/TextEncodingConversionManager/TEC1.5/TEC.b0.html">recommended</a>)') ?></td>
Note: See TracChangeset
for help on using the changeset viewer.