Skip to content

Instantly share code, notes, and snippets.

@kostasx
Created April 24, 2014 15:47
Show Gist options
  • Save kostasx/11259495 to your computer and use it in GitHub Desktop.
Save kostasx/11259495 to your computer and use it in GitHub Desktop.
Wordpress - Get product categories
global $post;
$product_categories = get_the_terms( $post->ID, 'product_cat' );
foreach ( $product_categories as $product_category ) {
echo $product_category->name;
echo $product_category->slug;
echo $product_category->term_id;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment