-
-
Save jongrover/45ee3a9507ae4797670e8554e7f498ae to your computer and use it in GitHub Desktop.
MT | TEC | Change past event views to reverse chronological order
This file contains 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
<?php | |
// Changes past event views to reverse chronological order | |
function tribe_past_reverse_chronological ($post_object) { | |
$past_ajax = (defined( 'DOING_AJAX' ) && DOING_AJAX && $_REQUEST['tribe_event_display'] === 'past') ? true : false; | |
if(tribe_is_past() || $past_ajax) { | |
$post_object = array_reverse($post_object); | |
} | |
return $post_object; | |
} | |
add_filter('the_posts', 'tribe_past_reverse_chronological', 100); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment