我不知道你为什么用sort_column
参数,它不受WP_Query()
班根据Codex, 正确的排序方法是使用order
和orderby
参数。
请尝试以下操作:
$args = array(
\'post_type\' => \'page\',
\'orderby\' => \'menu_order\',
\'order\' => \'ASC\', // DESC is the default order
\'post_status\' => \'publish\',
\'posts_per_page\' => -1,
\'post_parent\' => $post->ID,
);
$query = new WP_Query( $args );