Sunday, 26 April 2015

get main category list in woocommerce wordpress

       

         
1
<?php
           $term = get_queried_object()->term_id;
           $termid = get_term($term, 'product_cat' );

        $args = array(
            'orderby'       => 'name', 
            'order'         => 'ASC',
            'hide_empty'    => false, 
            'child_of'      => $term, 
            'parent'        =>0
        ); 
    $subproducts = get_terms( 'product_cat', $args);
    foreach ($subproducts as $subproduct) { 
    echo $subproduct->name; }?>

No comments:

Post a Comment