Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
add_action( 'woocommerce_before_shop_loop', 'woo_cate_tags', 15 );
function woo_cate_tags() {
global $post;
if ( is_product_category() ) {
$current_tags = get_the_terms( get_the_ID(), 'product_tag' );
if ( $current_tags && ! is_wp_error( $current_tags ) ) {
echo '
- ';
- '.$tag_title.'';
';foreach ($current_tags as $tag) {
$tag_title = $tag->name; // tag name
$tag_link = get_term_link( $tag );// tag archive link
echo '
}
echo '
}
}
}