I want to display related taxonomy of Product on Single Product WordPress. Added $product->ID
but it breaks the page. Without it all works but displays all taxonomy and not only related.
<?php global $product;
$terms=get_terms($product->ID, 'custom_features');
foreach ($terms as $term) {
echo '<il><a href="'.get_term_link($term->slug, 'custom_features').'">'.$term->name.'</a></il>';
}
?>
Try this