wordpress - get the menu items for Woocommerce -


i used following code product categories woocommerce.

<?php    $args = array(      'post_type' => 'product',       'posts_per_page' => -1,      'product_cat' => 'blazzers , hoodies & pullovers, jackets',     'orderby' => 'asc'      );         $loop = new wp_query( $args );         while ( $loop->have_posts() ) : $loop->the_post(); global $product;  ?> 

i want product categories menu "tops". in code above try add inside array:

'menu' => 'tops', 

but didnt have results. feedback?

thanks in advanced.


Comments

Popular posts from this blog

html - Firefox flex bug applied to buttons? -

html - Missing border-right in select on Firefox -

mysql - FireDac error 314 - but DLLs are in program directory -