]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/options-reading.php
Wordpress 2.0.2
[autoinstalls/wordpress.git] / wp-admin / options-reading.php
1 <?php
2 require_once('admin.php');
3
4 $title = __('Reading Options');
5 $parent_file = 'options-general.php';
6
7 include('admin-header.php');
8 ?>
9
10 <div class="wrap"> 
11 <h2><?php _e('Reading Options') ?></h2> 
12 <form name="form1" method="post" action="options.php"> 
13 <fieldset class="options"> 
14 <legend><?php _e('Blog Pages') ?></legend> 
15 <table width="100%" cellspacing="2" cellpadding="5" class="editform"> 
16 <tr valign="top"> 
17 <th width="33%" scope="row"><?php _e('Show at most:') ?></th> 
18 <td>
19 <input name="posts_per_page" type="text" id="posts_per_page" value="<?php form_option('posts_per_page'); ?>" size="3" /> 
20 <select name="what_to_show" id="what_to_show" > 
21 <option value="days" <?php selected('days', get_settings('what_to_show')); ?>><?php _e('days') ?></option> 
22 <option value="posts" <?php selected('posts', get_settings('what_to_show')); ?>><?php _e('posts') ?></option> 
23 </select>
24 </td> 
25 </tr> 
26 </table> 
27 </fieldset> 
28
29 <fieldset class="options"> 
30 <legend><?php _e('Syndication Feeds') ?></legend> 
31 <table width="100%" cellspacing="2" cellpadding="5" class="editform"> 
32 <tr valign="top"> 
33 <th width="33%" scope="row"><?php _e('Show the most recent:') ?></th> 
34 <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> 
35 </tr>
36 <tr valign="top">
37 <th scope="row"><?php _e('For each article, show:') ?> </th>
38 <td>
39 <label><input name="rss_use_excerpt"  type="radio" value="0" <?php checked(0, get_settings('rss_use_excerpt')); ?>  /> <?php _e('Full text') ?></label><br />
40 <label><input name="rss_use_excerpt" type="radio" value="1" <?php checked(1, get_settings('rss_use_excerpt')); ?> /> <?php _e('Summary') ?></label>
41 </td>
42 </tr> 
43 </table> 
44 </fieldset> 
45 <table width="100%" cellspacing="2" cellpadding="5" class="editform"> 
46 <tr valign="top"> 
47 <th width="33%" scope="row"><?php _e('Encoding for pages and feeds:') ?></th> 
48 <td><input name="blog_charset" type="text" id="blog_charset" value="<?php form_option('blog_charset'); ?>" size="20" class="code" /><br />
49 <?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> 
50 </tr>
51 </table> 
52 <p>
53 <label><input type="checkbox" name="gzipcompression" value="1" <?php checked('1', get_settings('gzipcompression')); ?> /> 
54 <?php _e('WordPress should compress articles (gzip) if browsers ask for them') ?></label>
55 </p>
56 <p class="submit">
57 <input type="hidden" name="action" value="update" /> 
58 <input type="hidden" name="page_options" value="posts_per_page,what_to_show,posts_per_rss,rss_use_excerpt,blog_charset,gzipcompression" /> 
59 <input type="submit" name="Submit" value="<?php _e('Update Options') ?> &raquo;" /> 
60 </p> 
61 </form> 
62 </div> 
63 <?php include('./admin-footer.php'); ?>