Reverse chronology of post listing

You can add code below to the beginning of loop.php

add_action('pre_get_posts', 'wpse_change_post_order');

function wpse_change_post_order($query){
    $query->set('order','ASC');
    $query->set('orderby','date');

}

the oldest posts will be in the home page.

Leave a Comment