通过将此代码添加到子主题的函数中,可以更改类别存档页面上的排序顺序,以按标题(a-Z)显示帖子。php:
/* Sort posts by title for a specific category */
function change_category_order( $query ) {
//Sort all posts from category with id=3 by title
if($query->is_category(\'3\') && $query->is_main_query()){
$query->query_vars[\'orderby\'] = \'name\';
$query->query_vars[\'order\'] = \'DESC\';
}
}
add_action( \'pre_get_posts\', \'change_category_order\' );
您需要替换;3英寸;使用正确的类别id。您可以通过标题至dashboard=>;找到类别id;post=>;类别,并将鼠标悬停在要调整排序顺序的类别上。