隐藏最近帖子中的自定义分类法帖子

时间:2016-08-11 02:32:09

标签: wordpress taxonomy custom-taxonomy

我的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();    

但不幸的是它不起作用。我该怎么做?

0 个答案:

没有答案