Woocommerce: Show products filtered by attribute

前端 未结 1 1978
南方客
南方客 2021-01-24 16:34

I want to filter products by attribute in Woocommerce using a checkbox or alternatively a link. If I mark the checkbox or click the link I want get all products that have this a

相关标签:
1条回答
  • 2021-01-24 17:23

    Ok i got finally the result!

    I have this:

    $args = array ( 
         'post_type'  => 'product',
         'posts_per_page'  => 12,
         'meta_query' => array( 
             array( 
              'value' => 'demo', 
              'compare' => 'like'
             ), 
           ), 
    

    );

    Thanks anyway for the help!

    0 讨论(0)
提交回复
热议问题