Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save danieledesantis/40a7819acf8dad2f33c7c239a435e051 to your computer and use it in GitHub Desktop.
Save danieledesantis/40a7819acf8dad2f33c7c239a435e051 to your computer and use it in GitHub Desktop.
WordPress The Events Calendar - Show all events in list view
<?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