假设我要查询两种帖子类型,如下所示:
$args = array(
'post_type' => array('post', 'another_post_type'),
'tax_query' => array(
array(
'taxonomy' => 'custom-taxonomy',
'field' => 'slug',
'terms' => 'test-slug',
)
)
);
如果我将custom-taxonomy
链接到another_post_type
,我将如何运行此查询,以使tax_query
仅针对another_post_type
个帖子运行?基本上,我希望查询返回所有常规的post
,但仅返回another_post_type
类别为test-slug
的帖子。
这可能吗?
答案 0 :(得分:1)
这似乎有效:
$args = array(
'post_type' => array('post', 'another_post_type'),
'tax_query' => array(
'relation' => 'OR',
array(
'taxonomy' => 'custom-taxonomy',
'field' => 'slug',
'terms' => 'test-slug'
),
array(
'taxonomy' => 'category', # default post category
'operator' => 'EXISTS'
)
)
);