最简单的方法是使用挂钩(pre_get_posts
钩子)更改顺序。但您应该检查该查询是否是您想要更改其顺序的查询!(is_archive()
或is_post_type_archive()
应足够。)
例如,将以下内容放入主题的函数中。php。。。
add_action( \'pre_get_posts\', \'my_change_sort_order\');
function my_change_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;
};