diff --git a/wp-includes/post-template.php b/wp-includes/post-template.php index 71ba4bdd6..35a7caa9f 100644 --- a/wp-includes/post-template.php +++ b/wp-includes/post-template.php @@ -806,7 +806,7 @@ function wp_list_pages($args = '') { * @param array|string $args */ function wp_page_menu( $args = array() ) { - $defaults = array('sort_column' => 'post_title', 'menu_class' => 'menu', 'echo' => true, 'link_before' => '', 'link_after' => ''); + $defaults = array('sort_column' => 'menu_order, post_title', 'menu_class' => 'menu', 'echo' => true, 'link_before' => '', 'link_after' => ''); $args = wp_parse_args( $args, $defaults ); $args = apply_filters( 'wp_page_menu_args', $args );