Get WooCommerce product categories from WordPress

前端 未结 4 1073
甜味超标
甜味超标 2020-11-30 18:30

I am trying to get the product categories from WooCommerce through a function in my WordPress theme

    function get_me_list_of($atts, $content = null)
             


        
4条回答
  •  北海茫月
    2020-11-30 18:55

    You could also use wp_list_categories();

    wp_list_categories( array('taxonomy' => 'product_cat', 'title_li'  => '') );
    

提交回复
热议问题