Hi,
I’m not sure I fully understand what you mean.
To clarify: Do you want the post lists to be sorted alphabetically by title?
If so, from the same page you’ve linked, you can use pre_get_posts
.
Example: Sorting archives using title in ascending order.
function modify_query_order( $query ) {
if ( $query->is_archive() && $query->is_main_query() ) {
$query->set( 'orderby', 'title' );
$query->set( 'order', 'ASC' );
}
}
add_action( 'pre_get_posts', 'modify_query_order' );
Here’s how to add PHP: https://docs.generatepress.com/article/adding-php/
A wise man once said:
"Have you cleared your cache?"