如何从父分类法档案中的子分类法中排除帖子

时间:2015-03-08 23:02:54

标签: php custom-post-type wordpress custom-taxonomy

我有一个显示分类法帖子的查询 唯一(也是很大)的问题是:它也显示了这个分类法的子分类中的帖子......

如何排除这些帖子在其直接分类标准之外显示?

这是我的代码:http://www.codeshare.io/4jxGt

1 个答案:

答案 0 :(得分:-1)

您可以将tax_query用于此目的:

<?php query_posts(array( 
    'post_type'=>'products', 
    'tax_query' => array( 'include_children' => false ), 
    'product-category' => $term->slug, 'posts_per_page' => -1 )); ?>

http://codex.wordpress.org/Class_Reference/WP_Query#Taxonomy_Parameters