Home › Forums › Front-end Issues › Filter by User Taxonomy? › Reply To: Filter by User Taxonomy?
The ACF taxonomy field stores an array of term ID values, you can’t search based on the term name or use ‘=’ for the comparison.
You need to use the term id and you need to use LIKE, something like this
'search' => '*'.esc_attr( $search ).'*',
'meta_query' => array(
array(
'key' => organization_category,
'value' => '"'.$term->term_id.'"',
'compare' => 'LIKE'
)
).......
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.