Skip to content

Instantly share code, notes, and snippets.

@ville6000
Last active November 13, 2015 13:20
Show Gist options
  • Save ville6000/5914f2506f675f766976 to your computer and use it in GitHub Desktop.
Save ville6000/5914f2506f675f766976 to your computer and use it in GitHub Desktop.
Order WordPress posts by multiple keys
<?php
$the_query = new WP_Query( array(
'orderby' => array( 'menu_order' => 'ASC', 'title' => 'DESC' ),
) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment