Skip to content

Instantly share code, notes, and snippets.

@jesseeproductions
Created October 16, 2015 21:00
Show Gist options
  • Save jesseeproductions/96a6fcce931375c043cf to your computer and use it in GitHub Desktop.
Save jesseeproductions/96a6fcce931375c043cf to your computer and use it in GitHub Desktop.
The Events Calendar Pro - Show All Events in Photo View
/*
* The Events Calendar Pro - Show All Events in Photo View
* @version 3.12.4
*/
add_action( 'pre_get_posts', 'tribe_photo_view_all_events', 15 );
function tribe_photo_view_all_events( $query ) {
if ( tribe_is_photo() ) {
$query->set( 'posts_per_page', -1 );
}
return $query;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment