Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jo-snips/2640611 to your computer and use it in GitHub Desktop.
Save jo-snips/2640611 to your computer and use it in GitHub Desktop.
show all events on a single day view
<?php
add_filter('pre_get_posts', 'tribe_filter_days_on_single_day', 20);
function tribe_filter_days_on_single_day($query) {
if (tribe_is_day()) {
$query->set('nopaging', true);
}
return $query;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment