Home › Forums › General Issues › Archive page custom fields filter (probs with tax and Post Obj fields) › Reply To: Archive page custom fields filter (probs with tax and Post Obj fields)
Taxonomy fields store term IDs, not the name of the term. In addition to this they store arrays of values.
so something like this /projects/?designer=new_studio
would need to look something like this /projects/?designer=22
(id value is just an example)
And then the query would need to look something like this
$meta_query[] = array(
'key' => 'project_designer_obj',
'value' => '"'.$_GET['designer'].'"', // quotes around id important
'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.