Get Category Of Product WooCommerce

Viewed 36

When I try to get the category of an item, it shows like this

enter image description here

The code I am using is $product->get_categories()

I need to get output 'Hoodies'

Thanks for your time.

Edit : Full code added

<script>
   console.log('<?php echo $product->get_categories(); ?>')
</script>

The code is on the Product Page, note: I am getting all other values (name, price ..etc) correctly.

1 Answers

Try this:

$categories = $product->get_categories();
echo strip_tags($categories);
Related