因此,所有子类别的描述都相同。可以理解为什么...
以下是链接:https://www.hairfactor.ru/product-category/okrashivanie/
add_action( 'woocommerce_after_subcategory_title', 'add_cat_description' );
function add_cat_description() {
$allsubcats = get_the_terms( get_the_ID(), 'product_cat' );
foreach( $allsubcats as $term ){
if( $term ){
if ($term->description)
echo '<div class="subcat_desc">' . $term->description . '</div>'; // Product category description
}
echo "<pre>";
print_r($term);
echo "</pre>";
}
}