Skip to content

Instantly share code, notes, and snippets.

@someguy9
Created April 29, 2022 21:49
Show Gist options
  • Save someguy9/eccc73f3ece9d772ff05e60d46946950 to your computer and use it in GitHub Desktop.
Save someguy9/eccc73f3ece9d772ff05e60d46946950 to your computer and use it in GitHub Desktop.
<?php
$meta_query_args = array(
'post_type' => 'page',
'order' => 'ASC',
'meta_key' => 'city_name',
'orderby' => 'meta_value'
);
$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