add_action( 'pre_get_posts', function ( $q ) {
if ( \Rtcl\Helpers\Functions::is_listing_taxonomy() && ! isset( $_GET['orderby'] ) ) {
$q->set( 'orderby', 'date' );
$q->set( 'order', 'desc' );
}
}, 99 );
Fix taxonomy page listing sorting issue
< 1 min read