Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save omurphy27/d1dada8d61dd92f9c4c7 to your computer and use it in GitHub Desktop.
Save omurphy27/d1dada8d61dd92f9c4c7 to your computer and use it in GitHub Desktop.
WooCommerce - Get Taxonomy Terms for a Product
<?php
// global $product; // only define if necessary, on most templates it won't be
$terms = get_the_terms( $product->id, 'product_cat' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment