我有产品帖子类型,我有 product_cat 是分类。在 product_cat 中,我有 红色,硬,软,笔 entires。
所以我必须让产品变得红色并且变得坚硬或柔软
我怎么能得到这个?
对于同时属于红色和硬性和软性的产品,我可以使用以下查询
$args = array(
'post_status' => 'publish',
'posts_per_page' => -1,
'tax_query' => array(
'relation' => 'AND',
array(
'taxonomy' => 'product_cat',
'field' => 'slug',
'terms' => 'red'
),
array(
'taxonomy' => 'product_cat',
'field' => 'slug',
'terms' => 'hard'
),
array(
'taxonomy' => 'product_cat',
'field' => 'slug',
'terms' => 'soft'
)
),
'post_type' => 'product',
'orderby' => 'title',
);
但我需要的是红色是必须的,无论是软的还是硬的。
即(red && (soft||hard ))
请帮忙。
答案 0 :(得分:4)
你可以这样试试:
'tax_query' => array(
'relation' => 'AND',
array(
'taxonomy' => 'product_cat',
'field' => 'slug',
'terms' => array( 'red' ),
),
array(
'relation' => 'OR',
array(
'taxonomy' => 'product_cat',
'field' => 'slug',
'terms' => array( 'hard' ),
),
array(
'taxonomy' => 'product_cat',
'field' => 'slug',
'terms' => array( 'soft' ),
),
),
),
未经测试,但应该可以使用!
如果没有,这里有一些有用的链接:
https://codex.wordpress.org/Class_Reference/WP_Query
https://10up.com/blog/2013/wordpress-mixed-relationship-taxonomy-queries/