Today, We want to share with you woocommerce get product category.In this post we will show you wordpress list categories, hear for woocommerce get product category name we will give you demo and example for implement.In this post, we will learn about get product category by product with an example.
Get list of all product categories in WooCommerce
Following simple source code will display you that how to get product categories list in WooCommerce.
$orderby = 'name'; $order = 'asc'; $hide_empty = false ; $params_val = array( 'orderby' => $orderby, 'order' => $order, 'hide_empty' => $hide_empty, ); $all_catgories = get_terms( 'product_cat', $params_val ); if( !empty($all_catgories) ){ echo '
- ';
foreach ($all_catgories as $key => $category) {
echo '
- '; echo ''; echo $category->name; echo ''; echo ' '; } echo '
I hope you get an idea about WooCommerce – get category for product page.
I would like to have feedback on my infinityknow.com blog.
Your valuable feedback, question, or comments about this article are always welcome.
If you enjoyed and liked this post, don’t forget to share.