purwa-astawa
4/8/2014 - 3:33 PM

Display all product category in woocommerce

Display all product category in woocommerce

<?php
/*
* source : http://www.wpprofessionalboys.com/woocommerce-display-product-categories-list/
*/
$args = array(
    'number'     => $number,
    'orderby'    => $orderby,
    'order'      => $order,
    'hide_empty' => $hide_empty,
    'include'    => $ids,
     'parent'    => 0
);
$product_categories = get_terms( 'product_cat', $args );
 foreach( $product_categories as $cat ) {
 echo '<li><a href="'. get_site_url().'/product-category/'. $cat->slug .'">'. $cat->name . '</a></li>';
 }
?>