0

我创建了一个函数来检索帖子的所有父帖子,并且我按 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 排序的。

知道如何订购我的查询,以便我将具有与后端相同的顺序吗?

谢谢,拉杜

4

1 回答 1

0

阅读本文,这里有六种方法可以自定义 WordPress 中帖子的排序顺序。

6 种自定义 WordPress 发布顺序的方法

还必须看到这个链接:

http://wpquestions.com/question/show/id/1009

于 2012-01-09T21:23:32.827 回答