将粘性帖子排除在查询之外,除非它们有特色图像

时间:2013-02-14 作者:byronyasgur

我有一个查询,可以防止没有各种条件的帖子出现,其中之一就是必须有一个特色图片。然而,不管怎样,粘性帖子似乎最终会出现在查询中。我怎样才能做到这一点?

    $args = array(
            \'posts_per_page\' => $articles_no,
            \'meta_key\' => \'_thumbnail_id\',
            \'post__not_in\' => $a_empty_titles,
            // remove post formats as per theme options ( using $hide from above )
            \'tax_query\' => array(
                    array(
                        \'taxonomy\' => \'post_format\',
                        \'field\' => \'slug\',
                        \'operator\' => \'NOT IN\',
                        \'terms\' => $hide
                    )
                )
            );
        $fp_query = new WP_Query( $args ); ?>
            <ul class="thumbnails">
                <?php 
                $thumbnail_span = "span4";
                if( $fp_query->have_posts() ) : while( $fp_query->have_posts() ) : $fp_query->the_post(); ?>

                ... Typical Formatting Follows ...
                ... Posts without featured images should have been excluded but "sticky" posts seem to persist

1 个回复
最合适的回答,由SO网友:Joe 整理而成

根据Codex上的文章WP Query:

ignore\\u sticky\\u posts(布尔)-是否忽略sticky posts。默认值为0-不要忽略粘性帖子。注意:忽略/排除返回的帖子开头包含的粘性帖子,但粘性帖子仍将按照返回帖子列表的自然顺序返回。

正在添加\'ignore_sticky_posts\' => 1 到您的$args 当您不需要时,数组将阻止粘性帖子出现。然后\'meta_key\' => \'_thumbnail_id\', 可以成功过滤掉没有特色图片的帖子。

结束

相关推荐

使用新的WP-Query()从循环中过滤后期格式;

嗨,我目前正在为我的博客构建一个主题。下面的代码指向最新的帖子(特色帖子)。因为这将有一个不同的风格比所有其他职位。然而我想过滤掉帖子格式:链接使用我在循环中定义的WP查询,因为它给我带来了更多的灵活性。我该怎么做呢? <?php $featured = new WP_Query(); $featured->query(\'showposts=1\'); ?> <?php while ($featured->have_post