Skip to content

Instantly share code, notes, and snippets.

@bappi-d-great
Created July 25, 2014 16:02
Show Gist options
  • Save bappi-d-great/37f809a7315fd3d6c07f to your computer and use it in GitHub Desktop.
Save bappi-d-great/37f809a7315fd3d6c07f to your computer and use it in GitHub Desktop.
Show all upcoming events in events archive page
<?php
add_filter( 'eab-collection-upcoming-start_timestamp', '__all_events_start' );
add_filter( 'eab-collection-upcoming-end_timestamp', '__all_events_end' );
function __all_events_start() {
return date('Y-m-d') . ' 00:01';
}
function __all_events_end() {
return date('Y', PHP_INT_MAX) . '-01-01 23:59';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment