Skip to content

Instantly share code, notes, and snippets.

@imvarunkmr
Last active August 29, 2015 14:21
Show Gist options
  • Select an option

  • Save imvarunkmr/82d2904ee40cfa554340 to your computer and use it in GitHub Desktop.

Select an option

Save imvarunkmr/82d2904ee40cfa554340 to your computer and use it in GitHub Desktop.
Woocommerce: Get product categories
<?php
$product_categories = get_terms('product_cat');
foreach ($product_categories as $product_cat) {
echo $product_cat->name;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment