Skip to content

Instantly share code, notes, and snippets.

@jazbek
Last active December 23, 2015 06:59
Show Gist options
  • Select an option

  • Save jazbek/6597658 to your computer and use it in GitHub Desktop.

Select an option

Save jazbek/6597658 to your computer and use it in GitHub Desktop.
Fix for events taking over the page title on non-event pages
<?php
add_action( 'pre_get_posts', 'tribe_fix_title' );
function tribe_fix_title( $query ) {
if ( $query->is_main_query() ) {
if ( ! $query->tribe_is_event_query ) {
$tec = TribeEvents::instance();
remove_filter( 'wp_title', array( $tec, 'maybeAddEventTitle' ), 10, 2 );
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment