'', 'orderby' => 'title', 'order' => 'ASC', 'hide_empty' => '', 'include' => '' ); $beauty_cosmetic_store_product_categories = get_terms( 'product_cat', $beauty_cosmetic_store_args ); $beauty_cosmetic_store_count = count($beauty_cosmetic_store_product_categories); if ( $beauty_cosmetic_store_count > 0 ){ foreach ( $beauty_cosmetic_store_product_categories as $product_category ) { echo '

' . $product_category->name . '

'; $beauty_cosmetic_store_args = array( 'posts_per_page' => -1, 'tax_query' => array( 'relation' => 'AND', array( 'taxonomy' => 'product_cat', 'field' => 'slug', 'terms' => $product_category->slug ) ), 'post_type' => 'product', 'orderby' => 'title,' ); } }?>