Skip to content

Instantly share code, notes, and snippets.

@elimn
Created April 19, 2016 03:37
Show Gist options
  • Select an option

  • Save elimn/959488d4f35ecc97a4be9bd77e9a6f2f to your computer and use it in GitHub Desktop.

Select an option

Save elimn/959488d4f35ecc97a4be9bd77e9a6f2f to your computer and use it in GitHub Desktop.
MT | TEC | Tick first upcoming by default in front-end
<?php
/*
* Checks the front-end box "Show only the first upcoming instance of recurring events" by default
*/
function tribe_subsequent_recurrence_default( $option, $name, $default ) {
if ( $name === 'hideSubsequentRecurrencesDefault' && ! is_admin() ) $option = true;
return $option;
}
add_filter( 'tribe_get_option', 'tribe_subsequent_recurrence_default', 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment