Wordpress order posts by post type

后端 未结 5 971
北海茫月
北海茫月 2020-12-17 04:30

I am trying to create a system which fetches post from 2 post types and i want to display the posts order by their post type. I am trying to first show the posts from one po

5条回答
  •  旧时难觅i
    2020-12-17 04:39

    Since Wordpress 4.0 you can just pass the option type (post_type) to the orderby parameter in the WP_Query object.

    orderby (string | array) - Sort retrieved posts by parameter. To order by post type just pass:

    • 'type' - Order by post type (available since Version 4.0). ('post_type' is also accepted.)

提交回复
热议问题