单个分类法上的WP_query两次

时间:2014-03-04 00:40:58

标签: wordpress custom-post-type taxonomy

我在自定义帖子上有一个简单的WP_query并且工作正常:

$args = array(
  'post_type' => 'post-type',
  'showposts' => 2,
  'location' => 'london'
);

但是我想让它查询两个位置,所以使用了一个数组:

$args = array(
  'post_type' => 'post-type',
  'showposts' => 2,
  'location' => array('london','paris')
);

但它只会在最后一个学期拉开。还有其他方法我应该这样做吗?

1 个答案:

答案 0 :(得分:0)

$args = array(
    'post_type' => 'post-type',
    'tax_query' => array(
        array(
            'taxonomy' => 'location',
            'field' => 'slug',
            'terms' => array('london','paris')
        )
    )
);

试试这个