【发布时间】:2017-08-28 13:19:48
【问题描述】:
我想获取两种不同分类法的帖子。
我只想列出那些帖子或者有标签longform或者post_format是link类型的帖子。
我已经尝试了下面的代码,但它不起作用:
$query = new WP_Query(array(
'relation' => 'OR',
'posts_per_page' => 2,
array(
'taxonomy' => 'post_format',
'field' => 'slug',
'terms' => array( 'link' ) // Single terms as string - multiple as array
),
array(
'taxonomy' => 'Tag',
'field' => 'id',
'tag__in' => array('16') // 16 is the code for tag longform
)
));
【问题讨论】: