Home › Forums › Support › no chronological order in blog posts › Reply To: no chronological order in blog posts
April 15, 2021 at 7:48 am
#1735735
Staff
Customer Support
Hi there,
try this PHP Snippet:
add_action( 'pre_get_posts', function( $query ) {
if ( $query->is_main_query() && ! is_admin() ) {
$query->set( 'order', 'DESC' );
}
} );
Adding PHP: https://docs.generatepress.com/article/adding-php/