Woocommerce中子类别的重复描述

时间:2019-07-04 10:15:12

标签: woocommerce categories

因此,所有子类别的描述都相同。可以理解为什么...

以下是链接: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>";
}
}

0 个答案:

没有答案