Skip to content

Instantly share code, notes, and snippets.

@BeardedGinger
Created August 20, 2016 02:02
Show Gist options
  • Save BeardedGinger/56de2ae8b233095d8e8d1fa10b4f632c to your computer and use it in GitHub Desktop.
Save BeardedGinger/56de2ae8b233095d8e8d1fa10b4f632c to your computer and use it in GitHub Desktop.
<?php
add_filter( 'pre_get_posts', 'expand_tribe_category_ppp' );
function expand_tribe_category_ppp( $query ) {
if( is_admin() )
return $query;
if( $query->tribe_is_event_query() && is_tax( 'tribe_events_cat' ) ) {
$query->set( 'posts_per_page', 10 );
}
return $query;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment