Skip to content

Instantly share code, notes, and snippets.

@apatton-cnet
Last active December 19, 2015 21:58
Show Gist options
  • Save apatton-cnet/6023565 to your computer and use it in GitHub Desktop.
Save apatton-cnet/6023565 to your computer and use it in GitHub Desktop.
$args = array(
'post_type' => 'product',
'tax_query' => array(
'relation' => 'AND',
array(
'taxonomy' => 'product_cat',
'field' => 'slug',
'terms' => $skinny
),
array(
'taxonomy' => 'product_cat',
'field' => 'slug',
'terms' => $crimson
)
)
);
$query = new WP_Query( $args );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment