Skip to content

Instantly share code, notes, and snippets.

@isotrope
Created June 15, 2020 21:28
Show Gist options
  • Save isotrope/b071bac635fd873f7cde0427b830c373 to your computer and use it in GitHub Desktop.
Save isotrope/b071bac635fd873f7cde0427b830c373 to your computer and use it in GitHub Desktop.
<?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