Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save someguy9/e5576b1b746d781bb50aedf8911f5897 to your computer and use it in GitHub Desktop.
Save someguy9/e5576b1b746d781bb50aedf8911f5897 to your computer and use it in GitHub Desktop.
Query multiple meta key values in WordPress
<?php
$meta_query_args = array(
'meta_query' => array(
array(
'key' => 'city_name',
'value' => array('New York City', 'London', 'San Francisco'),
'compare' => 'IN'
)
)
);
$meta_query = new WP_Query( $meta_query_args );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment