Sorting Events Alphabetically
By default, events will be sorted by their start date. We have occasionally been asked about changing the sort order to be alphabetical by the event title. Good news! This is possible with the following snippet, which you can add to the functions.php file of your child theme: function tribe_change_event_order( $query ) { if ( tribe_is_month() ) { $query->set( 'orderby', 'title' ); $query->set( 'order', 'ASC' ); } return $query; } add_filter( 'pre_get_posts', 'tribe_change_event_order', 99...