I think you folks are saying that there is no straight forward way to change the order of the posts in that particular theme (?)
I failed to find “pre_get_posts()” and also failed to find the $args array to change.
Perhaps the following doesn’t actually exist for my theme: ?
<?php $args = array(
‘type’ => ‘monthly’,
‘limit’ => ”,
‘format’ => ‘html’,
‘before’ => ”,
‘after’ => ”,
‘show_post_count’ => false,
‘echo’ => 1,
‘order’ => ‘DESC’,
‘post_type’ => ‘post’
);
wp_get_archives( $args ); ?>
Thank you for the help and advice !!