How do I get this snipit to show the events in order by date? Soonest date first.
/*
* The Events Calendar Pro – Show All Events in Photo View
* @version 3.12.4
*/
add_action( ‘pre_get_posts’, ‘tribe_photo_view_all_events’, 15 );
function tribe_photo_view_all_events( $query ) {
if ( tribe_is_photo() ) {
And what I meant to say in my first reply is that I haveĀ not fully tested this snippet–hopefully it will at least give you a good foundation to build from though.