Viewing 1 replies (of 1 total)
  • Plugin Contributor Manny Fleurmond

    (@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

Viewing 1 replies (of 1 total)

The topic ‘Order custom post type by date’ is closed to new replies.