WordPress:如何通过WooCommerce插件从特定类别中获取品牌的所有产品?

时间:2019-06-26 21:21:56

标签: wordpress woocommerce

我正在尝试从类别页面上打印品牌的所有产品。

我找到了wp_querry,但是我无法打印该品牌的当前品牌名称来在此页面中显示所有产品。

// get products
$args = array(
  'post_type'      => 'product',
  'posts_per_page' => -1,
  'tax_query'      => array(
      array(
          'taxonomy' => 'pwb-brand',
          'field'    => 'name',
          'terms'    => array ('NAME?????')
        )
    )
);
$loop = new WP_Query( $args );
if ( $loop->have_posts() ) {
    while ( $loop->have_posts() ) : $loop->the_post();
        wc_get_template_part( 'content', 'product' );
    endwhile;
} else {
    echo __( 'not found anyhting.' );
}
wp_reset_postdata();

例如,我需要获得在类别名称(YYY)中出现的所有品牌名称(XXX)产品

1 个答案:

答案 0 :(得分:0)

这是搜索后的答案:

$args = array(
    'post_type' => array('post','product'),
    'tax_query' => array(
          'relation' => 'AND',
       array(
         'taxonomy' => 'product_cat',
         'terms' => 82,
         'field' => 'id'
       ),
       array(
         'taxonomy' => 'brand',
         'terms' => 81,
         'field' => 'id'
       ),
    )
);
query_posts($args);

   if ( have_posts() ) {
    while ( have_posts() ) {
        the_post();         
        the_title();        
    } 
}