最后更新于:2023.08.11 05:00 如已失效请留言
将以下代码加入 functions.php 文件中
function remove_sticky_in_category($query) {
if ($query->is_category() && $query->is_main_query()) {
$query->set('ignore_sticky_posts', true);
}
}
add_action('pre_get_posts','remove_sticky_in_category');