function.php文件中添加如下代码:

add_action( 'pre_get_posts', 'my_change_sort_order'); 
function my_change_sort_order($query){
   if(is_archive()||is_category()):
     $query->set( 'order', 'DESC' );
     $query->set( 'orderby', 'date' );
   endif;    
};