我的类别结构如下:
Music
-Genre
-Pop
-Rock
-Role
-Vocalist
-Guitarist
所以现在我想以帖子应该属于(Pop或Rock)和(歌手)的方式过滤帖子
所以一个或一个类型和一个和一个角色
所以在有需要的wordpress术语中说多个category_in或category_and有category_in
Tricky对吧?
任何解决方案?
答案 0 :(得分:1)
试试这个,看它是否有效。
$args = array(
'post_type' => 'post',
'tax_query' => array(
'relation' => 'AND',
array(
'taxonomy' => 'category',
'field' => 'slug',
'terms' => array( 'vocalist' ),
),
array(
'relation' => 'OR',
array(
'taxonomy' => 'category',
'field' => 'slug',
'terms' => array( 'pop' ),
),
array(
'taxonomy' => 'category',
'field' => 'slug',
'terms' => array( 'rock' ),
),
),
),
);
$query = new WP_Query( $args );