我的WordPress网站上有一些自定义分类,但我想隐藏自我最近的帖子中的自定义分类法帖子。我有这段代码:
$c1 = array(
'post_type' => 'post',
'tax_query' => array(
array(
'taxonomy' => 'quality',
'field' => 'id',
'terms' => 123,
))
);
$c2 = array(
'post_status' => 'publish',
'post__not_in' => $c1,
'posts_per_page' => 10,
);
$recent = new WP_Query($c2);
while ($recent->have_posts()) : $recent->the_post();
但不幸的是它不起作用。我该怎么做?