我正在尝试从具有特定分类类别的自定义帖子类型中排除帖子,但它们会一直显示:
<?php
$args = array(
'post_type' => 'info_link',
'taxonomy' => 'linkcategory',
'terms' => 'featured',
'operator' => 'NOT IN',
'orderby' => 'title',
'order' => 'ASC',
'posts_per_page' => '100',
);
query_posts($args);
if ( have_posts() ) : while ( have_posts() ) : the_post();
...
?>
然而它不起作用。我也试过&#34; NOT EXISTS&#34;作为运营商,但他们仍然出现。我的错误在哪里?