Changeset 6840
- Timestamp:
- 02/14/2008 03:10:51 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-reading.php
r6838 r6840 12 12 <form name="form1" method="post" action="options.php"> 13 13 <?php wp_nonce_field('update-options') ?> 14 <table class="niceblue"> 14 15 <?php if ( get_pages() ): ?> 15 <h3><?php _e('Front Page') ?></h3>16 <table class="niceblue">17 16 <tr valign="top"> 18 <th width="33%"scope="row"><?php _e('Front page displays:')?></th>17 <th scope="row"><?php _e('Front page displays:')?></th> 19 18 <td> 20 19 <p><label> … … 41 40 </td> 42 41 </tr> 43 </table>44 42 <?php endif; ?> 45 46 <h3><?php _e('Blog Pages') ?></h3>47 <table class="niceblue">48 43 <tr valign="top"> 49 <th width="33%" scope="row"><?php _e('Show at most:') ?></th>44 <th scope="row"><?php _e('Blog pages show at most:') ?></th> 50 45 <td> 51 46 <input name="posts_per_page" type="text" id="posts_per_page" value="<?php form_option('posts_per_page'); ?>" size="3" /> <?php _e('posts') ?> 52 47 </td> 53 48 </tr> 54 </table>55 </fieldset>56 57 <h3><?php _e('Syndication Feeds') ?></h3>58 <table width="100%" cellspacing="2" cellpadding="5" class="optiontable editform">59 49 <tr valign="top"> 60 <th width="33%" scope="row"><?php _e('Show the most recent:') ?></th>50 <th scope="row"><?php _e('Syndication feeds show the most recent:') ?></th> 61 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> 62 52 </tr> 63 53 <tr valign="top"> 64 <th scope="row"><?php _e('For each article , show:') ?> </th>54 <th scope="row"><?php _e('For each article in a feed, show:') ?> </th> 65 55 <td> 66 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 /> … … 68 58 </td> 69 59 </tr> 70 </table>71 72 <h3><?php _e('Avatars') ?></h3>73 <table class="niceblue">74 60 <tr valign="top"> 75 <th width="33%"scope="row"><?php _e('Show Avatars?') ?></th>61 <th scope="row"><?php _e('Show Avatars?') ?></th> 76 62 <td> 77 63 <select name="show_avatars" id="show_avatars"> … … 87 73 </tr> 88 74 <tr valign="top"> 89 <th width="33%"scope="row"><?php _e('Show Avatars with Rating:') ?></th>75 <th scope="row"><?php _e('Show Avatars with Rating:') ?></th> 90 76 <td> 91 77 <select name="avatar_rating" id="avatar_rating"> … … 100 86 </td> 101 87 </tr> 102 </table>103 104 <table class="niceblue">105 88 <tr valign="top"> 106 <th width="33%"scope="row"><?php _e('Encoding for pages and feeds:') ?></th>89 <th scope="row"><?php _e('Encoding for pages and feeds:') ?></th> 107 90 <td><input name="blog_charset" type="text" id="blog_charset" value="<?php form_option('blog_charset'); ?>" size="20" class="code" /><br /> 108 91 <?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.