How to show category name in woocommerce products page


<?php
	global $post;
	$terms = get_the_terms( $post->ID, ‘product_cat’ );
	foreach ($terms as $term) {
		//$product_cat_id = $term->term_id;
		break;
	}
?>
<h2 class=”page_title”><?php echo $term->name; ?></h2>

 


Leave a Reply