How do I display a “category products drop down in a wordpress page” in Woocommerce 2.5.2

前端 未结 3 544
北海茫月
北海茫月 2021-01-28 09:08

I would like to display a drop down menu for products in a category.

 
         


        
3条回答
  •  难免孤独
    2021-01-28 09:41

    Okay so here is how I solved it, with the help of Hemnath mouli, I already gave you the credit for the answer but I wanted to publish the products inside a category in a dropbox.

    $args = array(
    'posts_per_page' => -1,
    'product_cat' => 'motherboard',
    'post_type' => 'product',
    'orderby' => 'title',
    );
    $products = new WP_Query( $args );
    echo "
                            
        
    提交评论

提交回复
热议问题