任何tax_query
可以采取include_children
参数(请参阅Codex),默认为true
. 因此,只需将其添加到您的代码中,它就会起作用:
<?php
$args = array(
\'posts_per_page\' => 100,
\'post_status\' => \'publish\',
\'tax_query\' => array(
array(
\'taxonomy\' => \'ait-dir-item-category\',
\'field\' => \'id\',
\'terms\' => 75,
\'include_children\' => false
)
),
\'post_type\' => \'ait-dir-item\' );
$the_posts = new WP_Query($args);
注:我不确定
include_children
当一个帖子同时分配给孩子和家长,但我猜帖子会出现
编辑:之前发布了错误的链接。从…起The Codex:
include_children (布尔值)-是否为层次分类法包含子级。默认为true。