Changeset 4144 for trunk/wp-admin/options-reading.php
- Timestamp:
- 08/30/2006 09:46:31 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-reading.php
r3852 r4144 55 55 <input name="posts_per_page" type="text" id="posts_per_page" value="<?php form_option('posts_per_page'); ?>" size="3" /> 56 56 <select name="what_to_show" id="what_to_show" > 57 <option value="days" <?php selected('days', get_ settings('what_to_show')); ?>><?php _e('days') ?></option>58 <option value="posts" <?php selected('posts', get_ settings('what_to_show')); ?>><?php _e('posts') ?></option>57 <option value="days" <?php selected('days', get_option('what_to_show')); ?>><?php _e('days') ?></option> 58 <option value="posts" <?php selected('posts', get_option('what_to_show')); ?>><?php _e('posts') ?></option> 59 59 </select> 60 60 </td> … … 73 73 <th scope="row"><?php _e('For each article, show:') ?> </th> 74 74 <td> 75 <label><input name="rss_use_excerpt" type="radio" value="0" <?php checked(0, get_ settings('rss_use_excerpt')); ?> /> <?php _e('Full text') ?></label><br />76 <label><input name="rss_use_excerpt" type="radio" value="1" <?php checked(1, get_ settings('rss_use_excerpt')); ?> /> <?php _e('Summary') ?></label>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> 77 77 </td> 78 78 </tr> … … 87 87 </table> 88 88 <p> 89 <label><input type="checkbox" name="gzipcompression" value="1" <?php checked('1', get_ settings('gzipcompression')); ?> />89 <label><input type="checkbox" name="gzipcompression" value="1" <?php checked('1', get_option('gzipcompression')); ?> /> 90 90 <?php _e('WordPress should compress articles (gzip) if browsers ask for them') ?></label> 91 91 </p>
Note: See TracChangeset
for help on using the changeset viewer.