如何在我的woocommerce主题中显示某个类别的产品?
我打算设计一个woocommerce模板,我希望它能够显示一个类别的产品。
例如:T恤类或......
答案 0 :(得分:0)
来自Woo' github https://github.com/woocommerce/woocommerce/blob/master/templates/single-product/meta.php
的代码global $product
echo wc_get_product_category_list( $product->get_id(), ', ', '<span class="posted_in">' . _n( 'Category:', 'Categories:', count( $product->get_category_ids() ), 'woocommerce' ) . ' ', '</span>' ); ?>