我创建了一个函数来检索帖子的所有父帖子,并且我按 post_date 排序。
select * from {$wpdb->posts} where post_type = 'page' and post_status = 'publish' and post_parent = " . ($parent == 0 ? $page_id : $parent) . ' order by post_date asc
在 WP 后端,帖子的排序方式不同,而且不是按发布日期或 ID 排序的。
知道如何订购我的查询,以便我将具有与后端相同的顺序吗?
谢谢,拉杜