【发布时间】:2021-05-17 08:59:00
【问题描述】:
ET 在他们的商店模块上不包括类别显示的开/关,这超出了我的范围,所以在这里......
【问题讨论】:
标签: woocommerce module categories shop divi
ET 在他们的商店模块上不包括类别显示的开/关,这超出了我的范围,所以在这里......
【问题讨论】:
标签: woocommerce module categories shop divi
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>';
}
}
【讨论】: