I am trying to get newest post
which is in result string display like
12th Jul 2015
24th Mar 2015
18th Jan 2015
I want to display it like
18th Jan 2015
24th Mar 2015
12th Jul 2015
I have query string
<?php query_posts(array( 'cat' => '17', 'orderby' => 'post_date', 'order' => 'DESC', 'posts_per_page' => 3 ) ); ?>
Thanks in advance…
I think this works: