我使用插件对帖子进行排序,它根据menu_order进行排序。当我使用单个post_type调用标准查询时,它可以正常工作。当我有一个带有post_type数组的WP_Query时,menu_order不再有效。有办法解决这个问题吗?
$args = array (
'posts_per_page' => '-1',
'post_type' => array('staff', 'teachers'),
'post_parent' => '0',
'orderby' => 'menu_order',
'order' => 'ASC'
);