我需要一个分配给特定自定义类别和标签的tax_query
。
以下查询显示所有产品,但我需要将产品发送到特定类别。
此处tag="sale"
,category="look"
$args = array(
'post_type' => 'product',
'tax_query' => array(
'relation' => 'AND',
array(
'taxonomy' => 'product_cat',
'field' => 'slug',
'terms' => array( 'look' ),
),
array(
'taxonomy' => 'product_tag',
'field' => 'slug',
'terms' => 'sale',
),
),
);
$query = new WP_Query( $args );
答案 0 :(得分:1)
你可以简单地使用这个
$new = new WP_Query('category_name=look&tag=sale');
答案 1 :(得分:0)
尝试使用类似的东西
$args = array(
'posts_per_page' => 5,
'post_type' => array('videos','image','audio'),
'category_name' => 'look',
'tag'=>'sale'
);
$loop = new WP_Query( $args );