使用以下代码将输出0
此类别有一个子类别,当我使用该子类别的ID时,它会返回17
。
我要做的是获取父类别的总产品,其中包括子类别的数量。
$term = get_term( 16, 'product_cat' ); // <--- tested in my system with this ID
echo 'Product Category: '. $term->name. ' - Count: '. $term->count;
答案 0 :(得分:0)
$q = "SELECT sum(count) AS total FROM wp_term_taxonomy WHERE parent = '16'";
$r = $wpdb->get_results($q);
$total = $r[0]->total;