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
Post a Comment