Display Taxonomy in post loop in ACF Relationship field

Product cat is category name for WooCommerce products category.

Thanks, Hammad Wali for sharing this useful code!

<?php $terms = get_the_terms( $p->ID, 'product_cat' );
	foreach ($terms as $t) {
	echo $t->name, ' ';
} ?>
Click to Copy