我的搜索不再有效,我的类别也一样。它现在显示所有帖子,直到达到页面限制,而不是指定的帖子。这是在我确保我在页面顶部显示的粘性帖子不会在主循环中重复之后发生的。
我将此添加到我的函数中。php
add_action(\'pre_get_posts\', \'theme_ignore_sticky\');
function theme_ignore_sticky($query)
{
if (is_home() && $query->is_main_query())
$query->set(\'ignore_sticky_posts\', true);
}
把这个放在索引中我的主循环之前。phpquery_posts( array( \'post__not_in\' => get_option( \'sticky_posts\' ), \'paged\' => get_query_var( \'paged\' ) ) );