How to meta_query for metadata that is an array

Always find the answer right after I post
LIKE instead of IN works for me.

        'meta_query' => array(
            array(
                'key' => '_venuelocations',
                'value' => 'United Kingdom',
                'compare' => 'LIKE'
            )
            ),



Source link