Wordpress - 显示特定自定义分类和特定标记的帖子

时间:2015-04-29 07:03:32

标签: wordpress woocommerce

我需要一个分配给特定自定义类别和标签的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 );

2 个答案:

答案 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 );