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;
};
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;
};
评论区
发表新的留言
您可以留言提出您的疑问或建议。
您的留言得到回复时,会通过您填写的邮箱提醒您。