kaioe
12/26/2017 - 5:28 PM

archive_sort_order

archive_sort_order

add_action( 'pre_get_posts', 'archive_sort_order'); 
    function archive_sort_order($query){
        if(is_archive()):
         //If you wanted it for the archive of a custom post type use: is_post_type_archive( $post_type )
           //Set the order ASC or DESC
           $query->set( 'order', 'ASC' );
           //Set the orderby
           $query->set( 'orderby', 'title' );
        endif;    
    };