Skip to content

Instantly share code, notes, and snippets.

@someguy9
Last active October 30, 2025 01:50
Show Gist options
  • Select an option

  • Save someguy9/8fea524745fea4dc4e7e23c635273911 to your computer and use it in GitHub Desktop.

Select an option

Save someguy9/8fea524745fea4dc4e7e23c635273911 to your computer and use it in GitHub Desktop.
<?php
$args = array(
'meta_query' => array(
'relation' => 'AND',
array(
'key' => 'city_name',
'value' => array('New York City', 'London', 'San Francisco'),
'compare' => 'IN',
),
array(
'key' => 'featured_post',
'value' => '1',
'compare' => '=',
),
),
);
$q = new WP_Query( $args );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment