Created
June 15, 2020 21:28
-
-
Save isotrope/b071bac635fd873f7cde0427b830c373 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$args = [ | |
'post_type' => [ 'product' ], | |
'post_status' => [ 'published' ], | |
'tax_query' => [ | |
'relation' => 'AND', | |
[ | |
'taxonomy' => 'product_cat', | |
'terms' => '164', | |
'field' => 'term_id', | |
], | |
[ | |
'taxonomy' => 'resourceindustry', | |
'terms' => 'ACF TAXONOMY ID(s)', | |
'field' => 'term_id', | |
], | |
], | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment