Skip to content

Instantly share code, notes, and snippets.

@geoffgraham
Last active December 19, 2016 21:11
Show Gist options
  • Select an option

  • Save geoffgraham/0bca3dd3eac1534e32ffeee369f63449 to your computer and use it in GitHub Desktop.

Select an option

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
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