Last active
November 13, 2015 13:20
-
-
Save ville6000/5914f2506f675f766976 to your computer and use it in GitHub Desktop.
Order WordPress posts by multiple keys
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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