Created
October 16, 2015 21:00
-
-
Save jesseeproductions/96a6fcce931375c043cf to your computer and use it in GitHub Desktop.
The Events Calendar Pro - Show All Events in Photo View
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 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