I have been trying to determine how to order the Archive page by Title in the WP Twenty Twenty-Four Template. I cannot find the parameters to do so. Can someone point me to where I can make that change? Thanks.
I have been trying to determine how to order the Archive page by Title in the WP Twenty Twenty-Four Template. I cannot find the parameters to do so. Can someone point me to where I can make that change? Thanks.
The pre_get_posts
filter can be used to change query parameters (untested):
add_action( 'pre_get_posts', static function ( $query ) {
if ( is_admin() ) {
return;
}
if ( ! $query->is_main_query() ) {
return;
}
if ( ! $query->is_home() ) {
return;
}
$query->set( 'orderby', 'title' );
} );