Created
February 22, 2021 18:02
-
-
Save danieledesantis/40a7819acf8dad2f33c7c239a435e051 to your computer and use it in GitHub Desktop.
WordPress The Events Calendar - Show all events in list view
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
<?php | |
add_action( 'tribe_events_pre_get_posts', 'dds_events_date_filter', 10, 1 ); | |
function dds_events_date_filter( $query ) { | |
$meta_query = (array)$query->get('meta_query'); | |
$meta_query['ends-after'] = array( | |
'key' => '_EventEndDateUTC', | |
'compare' => '>', | |
'value' => '', | |
'type' => 'DATETIME', | |
); | |
$query->set('meta_query',$meta_query); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment