@evergreenw60: Firstly you will need to create a child theme. If you don’t know how to create a child theme you can use Generate Child Theme Plugin. Install and Activate the plugin. Go to => Dashboard => Generate Child Theme tab => Select Parent Theme as Catch Box Pro and fill in other fields then Click Generate. This will create an activate the child theme.
Now, Go to => Child Theme folder => functions.php and add the following Code.
$args = array(
'orderby' => array( 'title' => 'DESC', 'menu_order' => 'ASC' )
);
$query = new WP_Query( $args );
/* Order Posts Alphabetically */
function prefix_modify_query_order( $query ) {
if ( $query->is_main_query() ) {
$args = array( 'post_date' => 'ASC' );
$query->set( 'orderby', $args );
}
}
add_action( 'pre_get_posts', 'prefix_modify_query_order' );
Let me now if this does the trick!
Kind Regards,
Skandha