Last post ordered by publish date using WP_Query on front page
The following 3 parameters will give you the posts in Ascending order from the date it was published (i.e The older posts will be shown first) ‘post_status’ => ‘publish’, ‘orderby’ => ‘publish_date’, ‘order’ => ‘ASC’ When you change the order to DESC you will get the posts in Descending order from the date it was … Read more