Created
October 17, 2013 02:01
-
-
Save media317/7018150 to your computer and use it in GitHub Desktop.
Sort order by date.
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
/* My metabox array */ | |
array( | |
'name' => 'Start Date', | |
'desc' => 'Project Start Date', | |
'id' => 'startdate', | |
'type' => 'text_date', | |
), | |
/* My query function */ | |
function mmi_projects_loop () { | |
$args = array( | |
'post_type' => 'projects', // enter your custom post type | |
'meta_key' => 'startdate', | |
'orderby' => 'meta_value_num', // used to determine the order of CPT displayed | |
'order' => 'DESC', | |
'posts_per_page'=> '-1', // overrides posts per page in theme settings | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment