Forums
Forums / Plugin: Meta Box / Order custom post type by date
(@ehlebalou)
10 years, 2 months ago
Hey, I am currently creating a website for an art gallery, and I would like to order the posts by a date that I set in a metabox, I tried different ways that I have found, but nothing seems to work, do you have an idea of how I could do this ?
https://ww.wp.xz.cn/plugins/meta-box/
(@funkatronic)
Code should be like so:
array( 'name' => 'Gallery posts', 'id' => "gallery_posts", 'type' => 'post', 'post_type' => 'page', //whatever post type you want 'query_args'=> array( 'post_status' => 'publish', 'posts_per_page' => - 1, 'orderby' => 'date', 'order' => 'ASC' //or DESC ), ),
Setting orderby to date is the key
The topic ‘Order custom post type by date’ is closed to new replies.