<?php
$page_id = get_queried_object_id();
$terms = get_terms( 'product_tag' );
$term_array = array();
if ( ! empty( $terms ) && ! is_wp_error( $terms ) ){
foreach ( $terms as $term ) {
if ($term->count > 0) {
$term_array[$term->name] = $term->name;
if ($term->term_id == $page_id) :
$btn_classes = 'btn btn--small btn--primary active current-menu-item';
else :
$btn_classes = 'btn btn--small btn--secondary';
endif;
echo '<a class="' . $btn_classes . '" href="'.get_term_link($term->term_id).'">'.$term->name.'</a>';
}
}
}
?>