File: /var/www/html/wpprm/wp-content/themes/ronneby/templates/folio-terms.php
<?php
if ( ! defined( 'ABSPATH' ) ) { exit; }
$id = get_the_ID();
$product_terms = wp_get_object_terms($id, 'my-product_category');
$count = count($product_terms);
?>
<?php if (!empty($product_terms) && !is_wp_error($product_terms)): ?>
<div class="entry-tags">
<ul>
<?php foreach ($product_terms as $term): ?>
<li>
<a href="<?php echo get_term_link($term->slug, 'my-product_category'); ?>"><?php echo $term->name; ?></a>
</li>
<?php endforeach; ?>
</ul>
</div>
<?php endif; ?>