您可以尝试新的(4.7以上)wp_list_sort() 实用程序函数,它是WP_List_Util::sort() 使用usort() 或uasort().
Example 1:
按发布日期降序排序
$sorted_custom_posts = wp_list_sort(
$custom_posts,
\'post_date\',
\'DESC\'
);
Example 2:
按发布日期降序和发布标题升序排序
$sorted_custom_posts = wp_list_sort(
$custom_posts,
[
\'post_date\' => \'DESC\',
\'post_title\' => \'ASC\',
]
);
检查标记
here 了解更多信息。