Hi,
I’m trying to get the list view of events to display in a slightly different order. Currently my events are displayed in Date then Time order for these views in the plugin’s posts_orderby function. What I want to order by is Date then Time then Venue, so that if I have events at the same venue at the same time, they are displayed adjacent in the listing, instead of possibly having other events at the same time but different venue between multiple events at the same time at the same venue.
This applies to day views and list view.
Similar to what we might do with a WP_Query:
$query = new WP_Query( array( ‘orderby’ => ‘date time venue’ ) );
Any thoughts on how I can make this happen at the template level?