Administration: Use consistent spacing for form elements in the Discussion Settings screen.
Props sagarjadhav. Fixes #31594. Built from https://develop.svn.wordpress.org/trunk@40779 git-svn-id: http://core.svn.wordpress.org/trunk@40637 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
64d65f007d
commit
591f423132
|
@ -71,7 +71,10 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
|
||||||
|
|
||||||
<label for="close_comments_for_old_posts">
|
<label for="close_comments_for_old_posts">
|
||||||
<input name="close_comments_for_old_posts" type="checkbox" id="close_comments_for_old_posts" value="1" <?php checked('1', get_option('close_comments_for_old_posts')); ?> />
|
<input name="close_comments_for_old_posts" type="checkbox" id="close_comments_for_old_posts" value="1" <?php checked('1', get_option('close_comments_for_old_posts')); ?> />
|
||||||
<?php printf( __('Automatically close comments on articles older than %s days'), '</label><label for="close_comments_days_old"><input name="close_comments_days_old" type="number" min="0" step="1" id="close_comments_days_old" value="' . esc_attr(get_option('close_comments_days_old')) . '" class="small-text" />'); ?>
|
<?php printf(
|
||||||
|
__( 'Automatically close comments on articles older than %s days' ),
|
||||||
|
'</label> <label for="close_comments_days_old"><input name="close_comments_days_old" type="number" min="0" step="1" id="close_comments_days_old" value="' . esc_attr( get_option( 'close_comments_days_old' ) ) . '" class="small-text" />'
|
||||||
|
); ?>
|
||||||
</label>
|
</label>
|
||||||
<br />
|
<br />
|
||||||
<label for="thread_comments">
|
<label for="thread_comments">
|
||||||
|
@ -86,7 +89,7 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
|
||||||
*/
|
*/
|
||||||
$maxdeep = (int) apply_filters( 'thread_comments_depth_max', 10 );
|
$maxdeep = (int) apply_filters( 'thread_comments_depth_max', 10 );
|
||||||
|
|
||||||
$thread_comments_depth = '</label><label for="thread_comments_depth"><select name="thread_comments_depth" id="thread_comments_depth">';
|
$thread_comments_depth = '</label> <label for="thread_comments_depth"><select name="thread_comments_depth" id="thread_comments_depth">';
|
||||||
for ( $i = 2; $i <= $maxdeep; $i++ ) {
|
for ( $i = 2; $i <= $maxdeep; $i++ ) {
|
||||||
$thread_comments_depth .= "<option value='" . esc_attr($i) . "'";
|
$thread_comments_depth .= "<option value='" . esc_attr($i) . "'";
|
||||||
if ( get_option('thread_comments_depth') == $i ) $thread_comments_depth .= " selected='selected'";
|
if ( get_option('thread_comments_depth') == $i ) $thread_comments_depth .= " selected='selected'";
|
||||||
|
@ -101,15 +104,17 @@ printf( __('Enable threaded (nested) comments %s levels deep'), $thread_comments
|
||||||
<label for="page_comments">
|
<label for="page_comments">
|
||||||
<input name="page_comments" type="checkbox" id="page_comments" value="1" <?php checked( '1', get_option( 'page_comments' ) ); ?> />
|
<input name="page_comments" type="checkbox" id="page_comments" value="1" <?php checked( '1', get_option( 'page_comments' ) ); ?> />
|
||||||
<?php
|
<?php
|
||||||
$default_comments_page = '</label><label for="default_comments_page"><select name="default_comments_page" id="default_comments_page"><option value="newest"';
|
$default_comments_page = '</label> <label for="default_comments_page"><select name="default_comments_page" id="default_comments_page"><option value="newest"';
|
||||||
if ( 'newest' == get_option('default_comments_page') ) $default_comments_page .= ' selected="selected"';
|
if ( 'newest' == get_option('default_comments_page') ) $default_comments_page .= ' selected="selected"';
|
||||||
$default_comments_page .= '>' . __('last') . '</option><option value="oldest"';
|
$default_comments_page .= '>' . __('last') . '</option><option value="oldest"';
|
||||||
if ( 'oldest' == get_option('default_comments_page') ) $default_comments_page .= ' selected="selected"';
|
if ( 'oldest' == get_option('default_comments_page') ) $default_comments_page .= ' selected="selected"';
|
||||||
$default_comments_page .= '>' . __('first') . '</option></select>';
|
$default_comments_page .= '>' . __('first') . '</option></select>';
|
||||||
|
printf(
|
||||||
/* translators: 1: Form field control for number of top level comments per page, 2: Form field control for the 'first' or 'last' page */
|
/* translators: 1: Form field control for number of top level comments per page, 2: Form field control for the 'first' or 'last' page */
|
||||||
printf( __('Break comments into pages with %1$s top level comments per page and the %2$s page displayed by default'), '</label><label for="comments_per_page"><input name="comments_per_page" type="number" step="1" min="0" id="comments_per_page" value="' . esc_attr(get_option('comments_per_page')) . '" class="small-text" />', $default_comments_page );
|
__( 'Break comments into pages with %1$s top level comments per page and the %2$s page displayed by default' ),
|
||||||
|
'</label> <label for="comments_per_page"><input name="comments_per_page" type="number" step="1" min="0" id="comments_per_page" value="' . esc_attr( get_option( 'comments_per_page' ) ) . '" class="small-text" />',
|
||||||
|
$default_comments_page
|
||||||
|
);
|
||||||
?></label>
|
?></label>
|
||||||
<br />
|
<br />
|
||||||
<label for="comment_order"><?php
|
<label for="comment_order"><?php
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.8-beta1-40778';
|
$wp_version = '4.8-beta1-40779';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue