我使用下面的代码在父页面上显示子页面列表。我想按字母顺序排列显示的列表。我怎样才能做到这一点?
function wpb_list_child_pages() { 
 
    global $post; 
 
    if ( is_page() && $post->post_parent )
 
        $childpages = wp_list_pages( \'sort_column=menu_order&title_li=&child_of=\' . $post->post_parent . \'&echo=0\' );
    else
        $childpages = wp_list_pages( \'sort_column=menu_order&title_li=&child_of=\' . $post->ID . \'&echo=0\' );
 
    if ( $childpages ) {
 
        $string = \'<ul>\' . $childpages . \'</ul>\';
    }
 
    return $string;
 
}
 
add_shortcode(\'wpb_childpages\', \'wpb_list_child_pages\');