have wp_list_pages() default to menu_order sorting and only use post_title sorting as a secondary sort. props johnbillion. fixes #3924 for trunk.
git-svn-id: http://svn.automattic.com/wordpress/trunk@5049 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e43516e5f6
commit
8d0e670015
|
@ -281,7 +281,7 @@ function wp_list_pages($args = '') {
|
|||
parse_str($args, $r);
|
||||
|
||||
$defaults = array('depth' => 0, 'show_date' => '', 'date_format' => get_option('date_format'),
|
||||
'child_of' => 0, 'exclude' => '', 'title_li' => __('Pages'), 'echo' => 1, 'authors' => '');
|
||||
'child_of' => 0, 'exclude' => '', 'title_li' => __('Pages'), 'echo' => 1, 'authors' => '', 'sort_column' => 'menu_order, post_title');
|
||||
$r = array_merge($defaults, $r);
|
||||
|
||||
$output = '';
|
||||
|
|
Loading…
Reference in New Issue