Skip to content

Instantly share code, notes, and snippets.

@elimn
Created October 24, 2016 20:14
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 elimn/8fd157765d5aea751e66526183b8c8c7 to your computer and use it in GitHub Desktop.
Save elimn/8fd157765d5aea751e66526183b8c8c7 to your computer and use it in GitHub Desktop.
MT | ECP | Set the events per page on photo view
<?php
/**
* Set the events per page on photo view.
*/
function tribe_photo_posts_per_page( $value, $name, $default ){
if ( 'postsPerPage' === $name && tribe_is_photo() ) {
$value = '30';
}
return $value;
}
add_filter( 'tribe_get_option', 'tribe_photo_posts_per_page', 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment