Skip to content

Instantly share code, notes, and snippets.

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 alaasalama/ee7c2247a1eadb6a5dd910bf39b35a61 to your computer and use it in GitHub Desktop.
Save alaasalama/ee7c2247a1eadb6a5dd910bf39b35a61 to your computer and use it in GitHub Desktop.
removes "'concert', 'convention'" categories from month view only
/*
* The Events Calendar Remove Events from Month and List Views
* add coding to theme's functions.php
* @version 3.12
* modify here with event category slugs: array( 'concert', 'convention' )
*/
add_action( 'pre_get_posts', 'tribe_exclude_events_category_month_list' );
function tribe_exclude_events_category_month_list( $query ) {
if ( isset( $query->query_vars['eventDisplay'] ) && ! is_singular( 'tribe_events' ) ) {
if ($query->query_vars['eventDisplay'] == 'month' && $query->query_vars['post_type'] == Tribe__Events__Main::POSTTYPE && ! is_tax( Tribe__Events__Main::TAXONOMY ) && empty( $query->query_vars['suppress_filters'] ) ) {
$query->set( 'tax_query', array(
array(
'taxonomy' => Tribe__Events__Main::TAXONOMY,
'field' => 'slug',
'terms' => array( 'concert', 'convention' ),
'operator' => 'NOT IN'
)
) );
}
}
return $query;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment