WooCommerce计算猫及其子类别中的产品总数

时间:2014-01-29 11:02:20

标签: php wordpress woocommerce

使用以下代码将输出0此类别有一个子类别,当我使用该子类别的ID时,它会返回17

我要做的是获取父类别的总产品,其中包括子类别的数量。

$term = get_term( 16, 'product_cat' ); // <--- tested in my system with this ID
echo 'Product Category: '. $term->name. ' - Count: '. $term->count;

1 个答案:

答案 0 :(得分:0)

$q = "SELECT sum(count) AS total FROM wp_term_taxonomy WHERE parent = '16'";
$r = $wpdb->get_results($q);
$total = $r[0]->total;