Last active
December 19, 2016 21:11
-
-
Save geoffgraham/0bca3dd3eac1534e32ffeee369f63449 to your computer and use it in GitHub Desktop.
The Events Calendar 4.2.6 // Display Upcoming Events in Descending Alphabetical Order
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
| add_action( 'pre_get_posts', 'tribe_post_alphabetical_ordering', 51 ); | |
| function tribe_post_alphabetical_ordering( $query ) { | |
| if( tribe_is_upcoming() ) { | |
| $query->set( 'orderby', 'title' ); | |
| $query->set( 'order', 'ASC' ); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment