Divi + Woocommerce 商店模块 = 显示产品工作片段的类别没有问题?

问题描述

ET 不包括他们商店模块上的类别展示的开/关超出我的范围,所以这里是...

解决方法

add_action( 'woocommerce_after_shop_loop_item_title','after_shop_loop_item_title',1 );
function after_shop_loop_item_title() {
   global $post;
   $terms = get_the_terms( $post->ID,'product_cat' ); 
   foreach ($terms as $term) {
       $term_link = get_term_link( $term );
       echo '<span> <a href="' . esc_url( $term_link ) . '">' .$term->name .'</a> </span>';
   }
}