Home › Forums › General Issues › Select posts by Category && Custom Field? › Reply To: Select posts by Category && Custom Field?
I was going to answer last night but then I thought the way you worded it that it might be another taxonomy.
Anyway, you just need to add both a tax query and a meta query
$args = array(
'post_type' => 'product', // or whatever
'tax_query' => array(
array(
'taxonomy' => 'category',
'terms' => array($term_id) // must be an array of term IDs
)
),
'meta_query' => array(
array(
'key' => 'brand',
'value' => 'some brand'
)
)
)
https://codex.wordpress.org/Class_Reference/WP_Query
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.