Sort Query by Type Field Value
-
With Types, I have created a custom post type named session. To display only posts of this type, I use this query
query_posts(array('post_type' => 'session') );
and then I display my field values with snippets like these:
$starttime = types_render_field ( "start-time", array("raw"=>"true") );
However, as you can see I have field for “start time” and “end time” in my custom post time (both are date fields).
I would now like to sort my query by the
starttime
, in order to display a schedule with lots of details that are pulled from my custom fields. How can I do this?!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Sort Query by Type Field Value’ is closed to new replies.