Can't order by date
-
I got one page template that has a wp_query loop ordered by menu_order that work just great, and i have another loop ordered by date, that doesn’t work…
Order by menu (ok)
$the_query1 = new WP_Query( array( 'post_type' => 'post','orderby' => 'menu_order','order' => 'ASC') );
Order by date (not working)
$the_query2 = new WP_Query( array( 'post_type' => 'post','orderby' => 'date','order' => 'ASC') );
I’ve also tryed using post_date instead of date, but still no luck!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Can't order by date’ is closed to new replies.