对我来说,使用ignore_sticky_posts
阻止粘性帖子显示在顶部,但它们仍按时间顺序与其他帖子一起显示。
我正在使用post__not_in
具有get_option(\'sticky_posts\')
从主查询中排除粘性帖子。
<?php
/**
* Exclude sticky posts from home page.
*/
function theme_name_ignore_sticky_posts($query){
if (is_home() && $query->is_main_query())
$query->set(\'post__not_in\', get_option(\'sticky_posts\'));
}
add_action(\'pre_get_posts\', \'theme_name_ignore_sticky_posts\');
?>