woocommerce get_terms过滤器根据产品类别筛选

时间:2016-01-09 16:25:17

标签: php wordpress woocommerce

我只是希望有人可以帮助我。

我的问题出在woocommerce,我想根据当前的产品类别列出品牌的条款。 但我现在所知道的是列出所有条款,这在商店页面上很好,但我也希望对产品类别进行过滤,并计算该产品类别的可用商品。

提前致谢

<?php
$args = array(
    'parent'    =>  0
);
$terms = get_terms( 'yith_product_brand', $args );
foreach( $terms as $term ):
    $term_link = get_term_link( $term ); ?>
    <li><a href="<?php echo esc_url( $term_link ); ?>"><?php echo $term->name; ?></a> <span class="count">(<?php echo $term->count; ?>)</span></li>
<?php
endforeach; ?>

0 个答案:

没有答案