如何在后端视图中订购帖子?

时间:2012-01-09 21:05:11

标签: php mysql wordpress posts

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

我知道如何订购我的查询以便我将获得与后端相同的订单吗?

谢谢, 拉杜

1 个答案:

答案 0 :(得分:0)

通过这篇文章,有六种方法可以自定义WordPress中帖子的排序顺序。

6 Ways to Customize WordPress Post Order

还必须看到这个链接:

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