Home › Forums › ACF PRO › Filtering with posts that are using multiple select › Reply To: Filtering with posts that are using multiple select
When you allow multiple values the values saved is no longer a single text value. Instead it is stored in the DB as a serialized array. You need to alter the meta query, you can see an example of the meta query and it would work the same as the meta query here http://www.advancedcustomfields.com/resources/querying-relationship-fields/#single-location.php. See that page for an explanation of this code.
meta_query = array(
array(
'key' => 'type',
'value' => '"'.$type.'"',
'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.