ET 在他们的商店模块上不包括类别显示的开/关,这超出了我的范围,所以在这里......
问问题
150 次
1 回答
0
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>';
}
}
于 2021-02-14T01:36:05.713 回答