Ticket #6362: 6362.3.diff
File 6362.3.diff, 2.1 KB (added by , 14 years ago) |
---|
-
wp-admin/edit-page-form.php
292 292 } ?> 293 293 <h5><?php _e('Order') ?></h5> 294 294 <p><label class="screen-reader-text" for="menu_order"><?php _e('Page Order') ?></label><input name="menu_order" type="text" size="4" id="menu_order" value="<?php echo esc_attr($post->menu_order) ?>" /></p> 295 <p><?php _e('Pages are usually ordered alphabetically, but you can put a number above to change the order pages appear in. (We know this is a little janky, it’ll be better in future releases.)'); ?></p>295 <p><?php _e('Pages are usually ordered alphabetically, but you can put a number above to change the order pages appear in.'); ?></p> 296 296 <?php 297 297 } 298 298 add_meta_box('pageparentdiv', __('Attributes'), 'page_attributes_meta_box', 'page', 'side', 'core'); … … 330 330 <input name="advanced_view" type="hidden" value="1" /> 331 331 <p><label for="comment_status" class="selectit"> 332 332 <input name="comment_status" type="checkbox" id="comment_status" value="open" <?php checked($post->comment_status, 'open'); ?> /> 333 <?php _e('Allow Comments') ?></label></p> 334 <p><label for="ping_status" class="selectit"><input name="ping_status" type="checkbox" id="ping_status" value="open" <?php checked($post->ping_status, 'open'); ?> /> <?php _e('Allow Pings') ?></label></p> 335 <p><?php _e('These settings apply to this page only. “Pings” are <a href="http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" target="_blank">trackbacks and pingbacks</a>.'); ?></p> 333 <?php _e('Allow comments on this page.') ?></label></p> 334 <p><label for="ping_status" class="selectit"><input name="ping_status" type="checkbox" id="ping_status" value="open" <?php checked($post->ping_status, 'open'); ?> /> <?php _e('Allow '); echo('<a href="http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" target="_blank">'); _e('trackbacks and pingbacks'); echo('</a> on this page.'); ?></label></p> 336 335 <?php 337 336 } 338 337 add_meta_box('pagecommentstatusdiv', __('Discussion'), 'page_comments_status_meta_box', 'page', 'normal', 'core');