To display the post order by modified date in wordpress To display the post order by modified date in wordpress wordpress wordpress

To display the post order by modified date in wordpress


You should use DESC for order.

Try this:

 $the_query = new WP_Query( array(     'post_type'   => $post_type,     'numberposts' => '2',     'orderby'     => 'modified',     'order'       => 'DESC', ));

Using DESC will give you the latest post first(descending order).

EDIT:

As Andrew commented, the default value for order is DESC and can thus be omitted from the code:

 $the_query = new WP_Query( array(     'post_type'   => $post_type,     'numberposts' => '2',     'orderby'     => 'modified', ));


Try

<?php query_posts($query_string . '&post_type=$post_type&orderby=modified&order=desc'); ?>