Advertisement
BakerMan

Show only first recurring event in main blog loop

Nov 11th, 2013
470
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. // Don't display recurring events more than once in the main blog loop
  2. add_filter( 'pre_get_posts', 'blog_loop_control_recurring_events', 60 );
  3.  
  4. function blog_loop_control_recurring_events( WP_Query $query ) {
  5.     if ( $query->is_main_query() && is_home() ) $query->set( 'tribeHideRecurrence', true );
  6.     return $query;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement