D
D
dimasibirak2017-03-03 13:08:28
WordPress
dimasibirak, 2017-03-03 13:08:28

How to sort by taxonomies (product properties) in woocommerce?

$args = array(
      'post_type'	=> 'product',
      'post_status' => 'publish',
      'ignore_sticky_posts'	=> 1,
      'posts_per_page' => 50,
      'tax_query' => array(
        array(
          'taxonomy' => 'product_cat',
          'field' => 'id',
          'terms' => $cat
        ),
        array(
          'taxonomy' => 'attribute',
          'field'    => 'slug',
          'terms'    => array( 'pa_cena-polotna-banner', '4500' ),
        )
      )
      
    );

I have been trying to make a selection of goods by property for the 4th day, it does not work, please tell me where I am making a mistake?

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question