我需要找出WordPress WooCommerce中添加产品的总数量。我怎么能得到它?
答案 0 :(得分:0)
通过以下代码,您可以获得woo-commerce中的产品数量。
在主题function.php文件中添加此功能
function get_productcount() {
$product_count = 0;
// loop through all categories to collect the count.
foreach (get_terms('product_cat') as $term)
$product_count += $term->count;
return $product_count;
}
现在,您可以从任意主题页面调用此功能。在我的例子中,我在header.php中添加了以下代码行,
<?php echo your_product_count() ?>
或以其他方式,您可以直接添加模板
$terms = get_terms( 'product_cat' );
foreach( $terms as $term )
{
$product_count += $term->count;
echo 'Product Category: '
. $term->name
. ' - Count: '
. $term->count;
}
echo "Total count:". $product_count;