wp_query for select field with multiple values?
-
Can someone post an example of a query that has a meta_query for a custom select field with multiple values? Here’s my attempt, which doesn’t work…
$args = array( 'posts_per_page' => 3, 'meta_query' => array( array( 'key' => 'myfieldname', 'value' => array('myvalue'), 'compare' => 'IN', ), ), ); $query = new WP_Query($args); var_dump($query->have_posts()); // Returns false :(
Thanks
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘wp_query for select field with multiple values?’ is closed to new replies.