【发布时间】:2014-01-29 13:57:30
【问题描述】:
以下代码应该获取自定义分类中没有特定术语的帖子。目前它仍然得到他们。是不是少了什么东西。
$args = array(
'numberposts' => '3',
'post__not_in' => $post_not_in,
'tax_query' => array(
'taxonomy' => 'topic',
'terms' => 9,
'field' => 'id',
'operator' => 'NOT IN'
)
);
$extras = get_posts($args);
【问题讨论】:
标签: wordpress custom-taxonomy notin