Skip to content

Instantly share code, notes, and snippets.

@digisavvy
Created September 11, 2018 01:25
Show Gist options
  • Select an option

  • Save digisavvy/e82d23847f6532689361d200b2873100 to your computer and use it in GitHub Desktop.

Select an option

Save digisavvy/e82d23847f6532689361d200b2873100 to your computer and use it in GitHub Desktop.
$q = new WP_Query( array(
'meta_query' => array(
'relation' => 'AND',
'state_clause' => array(
'key' => 'state',
'value' => 'Wisconsin',
),
'city_clause' => array(
'key' => 'city',
'compare' => 'EXISTS',
),
),
'orderby' => array(
'city_clause' => 'ASC',
'state_clause' => 'DESC',
),
) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment