I would like to display a drop down menu for products in a category.
Volvo
'ASC', 'hide_empty' => $hide_empty, 'include' => $ids, 'posts_per_page' =>'-1' ); $product_categories = get_terms( 'product_cat', $args ); echo ""; foreach( $product_categories as $category ){ echo "" . esc_html( $category->name ) . ""; } echo ""; ?>
Check this out. This is the way to get product categories.!