Skip to content

Instantly share code, notes, and snippets.

Created September 8, 2012 19:09
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 anonymous/3678753 to your computer and use it in GitHub Desktop.
Save anonymous/3678753 to your computer and use it in GitHub Desktop.
WP_Query, Orderby two fields
$args = array
(
'cat' => 12,
'posts_per_page' => 50,
'orderby' => 'title meta_value_num',
'meta_key' => 'sqft',
'order' => 'ASC'
);
$query = new WP_Query( $args );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment