~ubuntu-branches/debian/jessie/wordpress/jessie

« back to all changes in this revision

Viewing changes to wp-admin/options-reading.php

  • Committer: Package Import Robot
  • Author(s): Craig Small
  • Date: 2014-04-17 20:56:19 UTC
  • mfrom: (1.2.35)
  • Revision ID: package-import@ubuntu.com-20140417205619-nurbet6eho4yvwfv
Tags: 3.9+dfsg-1
* New upstream release
* 3.9 seems to handle different locations for plugins so the
  plugin directory handling patches have been cut back.

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
get_current_screen()->set_help_sidebar(
70
70
        '<p><strong>' . __('For more information:') . '</strong></p>' .
71
71
        '<p>' . __('<a href="http://codex.wordpress.org/Settings_Reading_Screen" target="_blank">Documentation on Reading Settings</a>') . '</p>' .
72
 
        '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
 
72
        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
73
73
);
74
74
 
75
75
include( ABSPATH . 'wp-admin/admin-header.php' );
99
99
                update_option( 'show_on_front', 'posts' );
100
100
?>
101
101
<table class="form-table">
102
 
<tr valign="top">
 
102
<tr>
103
103
<th scope="row"><?php _e( 'Front page displays' ); ?></th>
104
104
<td id="front-static-pages"><fieldset><legend class="screen-reader-text"><span><?php _e( 'Front page displays' ); ?></span></legend>
105
105
        <p><label>
122
122
</fieldset></td>
123
123
</tr>
124
124
<?php endif; ?>
125
 
<tr valign="top">
 
125
<tr>
126
126
<th scope="row"><label for="posts_per_page"><?php _e( 'Blog pages show at most' ); ?></label></th>
127
127
<td>
128
128
<input name="posts_per_page" type="number" step="1" min="1" id="posts_per_page" value="<?php form_option( 'posts_per_page' ); ?>" class="small-text" /> <?php _e( 'posts' ); ?>
129
129
</td>
130
130
</tr>
131
 
<tr valign="top">
 
131
<tr>
132
132
<th scope="row"><label for="posts_per_rss"><?php _e( 'Syndication feeds show the most recent' ); ?></label></th>
133
133
<td><input name="posts_per_rss" type="number" step="1" min="1" id="posts_per_rss" value="<?php form_option( 'posts_per_rss' ); ?>" class="small-text" /> <?php _e( 'items' ); ?></td>
134
134
</tr>
135
 
<tr valign="top">
 
135
<tr>
136
136
<th scope="row"><?php _e( 'For each article in a feed, show' ); ?> </th>
137
137
<td><fieldset><legend class="screen-reader-text"><span><?php _e( 'For each article in a feed, show' ); ?> </span></legend>
138
138
<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 />
140
140
</fieldset></td>
141
141
</tr>
142
142
 
143
 
<tr valign="top" class="option-site-visibility">
 
143
<tr class="option-site-visibility">
144
144
<th scope="row"><?php has_action( 'blog_privacy_selector' ) ? _e( 'Site Visibility' ) : _e( 'Search Engine Visibility' ); ?> </th>
145
145
<td><fieldset><legend class="screen-reader-text"><span><?php has_action( 'blog_privacy_selector' ) ? _e( 'Site Visibility' ) : _e( 'Search Engine Visibility' ); ?> </span></legend>
146
146
<?php if ( has_action( 'blog_privacy_selector' ) ) : ?>