使用“查询帖子”排除自定义分类

时间:2014-04-18 09:10:16

标签: wordpress

我制作了一个名为portfolio-categories的自定义分类法,并创建了一个我想从帖子查询中排除的类别。我已将其添加到帖子查询中,但这些帖子仍在显示。

以下是我使用的代码:

query_posts( array(
    'post_type'=> 'portfolio',
    'orderby'=>'menu_order',
    'order'=>'ASC',
    'tax_query' => array(
        'taxonomy' => 'portfolio-categories',
        'terms' => 7,
        'field' => 'id',
        'operator' => 'NOT IN' 
    )
) ); 

有人能在这里发现问题吗?从文档中看,这对我来说是正确的。

2 个答案:

答案 0 :(得分:0)

试试这样:

$args=array(
           'post_type' => 'portfolio',
           'taxonomy'=>'product-category',
           'orderby'=>'menu_order',
           'order'=>'ASC',
           'term' => 'usluge-proizvodi',
           'post__not_in' => array(330,341),
           'post_status' => 'publish',
           'posts_per_page' => 8
      );

答案 1 :(得分:0)

使用new WP_query()

$args=array('post_type'   => 'portfolio',
            'taxonomy'    => 'product-category',
            'orderby'     => 'menu_order',
            'order'       => 'ASC',
            'post_status' => 'publish',
            'cat'         => 7
  );
$query = new WP_query($args);
while($query->have_posts()) : $query->the_post();

     ......

endwhile;