Himas Rafeek
Posted on: 2 years ago

Looping through WooCommerce categories

To loop through WooCommerce categories outside the products page in WordPress, use the code below.


                                          <?php
$args = array(
     'taxonomy' => 'product_cat',
     'orderby' => 'name',
     'order' => 'ASC',
     'hide_empty' => false
);
foreach( get_categories( $args ) as $category ) :
     //do category data
endforeach;
?>