我只想显示父类别(自定义分类法)下的所有帖子!。
以下是我迄今为止所做的:\'
<?php
$args = array(
\'posts_per_page\' => 100,
\'post_status\' => \'publish\',
\'tax_query\' => array(
array(
\'taxonomy\' => \'ait-dir-item-category\',
\'field\' => \'id\',
\'terms\' => 75
)
),
\'post_type\' => \'ait-dir-item\' );
$the_posts = new WP_Query($args);
这将显示所有帖子,包括我不想显示的子类别。谢谢