Sort by 'menu_order, post_title'. see #8549

git-svn-id: https://develop.svn.wordpress.org/trunk@10182 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren
2008-12-10 22:22:30 +00:00
parent 37363646c6
commit 625174171c
2 changed files with 2 additions and 2 deletions

View File

@@ -1050,7 +1050,7 @@ function inline_edit_row( $type ) {
<label>
<span class="title"><?php _e( 'Parent' ); ?></span>
<?php
$dropdown_args = array('selected' => $post->post_parent, 'name' => 'post_parent', 'show_option_none' => __('Main Page (no parent)'), 'option_none_value' => 0, 'sort_column'=> 'menu_order');
$dropdown_args = array('selected' => $post->post_parent, 'name' => 'post_parent', 'show_option_none' => __('Main Page (no parent)'), 'option_none_value' => 0, 'sort_column'=> 'menu_order, post_title');
if ( $bulk )
$dropdown_args['show_option_no_change'] = __('- No Change -');
$dropdown_args = apply_filters('quick_edit_dropdown_pages_args', $dropdown_args);