【发布时间】:2016-05-24 14:21:54
【问题描述】:
我有这个用于 WP_Query 的 $args:
$args = array(
'post_type' => 'estructura',
'tax_query' => array(
array(
'taxonomy' => 'category',
'field' => 'term_id',
'terms' => '12',
),
)
);
Witch 返回标记为类别 12 或标记为子类别(共 12 个)的帖子
我只想要标记为 12 类的那些,
如何防止孩子退回?
谢谢!
【问题讨论】: