Skip to content

Instantly share code, notes, and snippets.

@jo-snips
Forked from jkudish/single-no-pagination.php
Created March 9, 2012 02:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jo-snips/2004710 to your computer and use it in GitHub Desktop.
Save jo-snips/2004710 to your computer and use it in GitHub Desktop.
The Events Calendar: 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