Skip to content

Instantly share code, notes, and snippets.

@niconerd-zz
Created January 22, 2016 14:19
Show Gist options
  • Save niconerd-zz/1ea01513ecb3717de67c to your computer and use it in GitHub Desktop.
Save niconerd-zz/1ea01513ecb3717de67c to your computer and use it in GitHub Desktop.
The Events Calendar - Limit the upcoming widget to just event running today
/*
* The Events Calendar - Limit the upcoming widget to just event running today
*/
add_filter( 'tribe_events_list_widget_query_args', 'tribe_modify_list_widget_args', 10, 1 );
function tribe_modify_list_widget_args ( $args ) {
$start_date_init = date ( 'Y-m-d' );
$start_date_end = $start_date_init . ' 23:59:59';
$args['meta_query'][] = array('key' => '_EventStartDate','type' => 'DATETIME','compare' => '>=','value' => $start_date_init);
$args['meta_query'][] = array('key' => '_EventStartDate','type' => 'DATETIME','compare' => '<=','value' => $start_date_end);
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment