Skip to content

Instantly share code, notes, and snippets.

@jazbek
Last active January 4, 2019 05:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jazbek/7442734 to your computer and use it in GitHub Desktop.
Save jazbek/7442734 to your computer and use it in GitHub Desktop.
Fix for broken tag archives
<?php
add_action( 'parse_query', 'tribe_fix_tag_query' );
function tribe_fix_tag_query( $query ) {
if ( $query->is_tag && (array) $query->get( 'post_type' ) != array( TribeEvents::POSTTYPE ) ) {
if ( empty( $query->query_vars['post_type'] ) ) {
$query->query_vars['post_type'] = array( 'post' );
}
if ( ! ( $query->query_vars['post_type'] == array( 'post' ) || $query->query_vars == 'post' ) ) {
remove_action( 'parse_query', array( 'TribeEventsQuery', 'parse_query' ), 50 );
remove_action( 'pre_get_posts', array( 'TribeEventsQuery', 'pre_get_posts' ), 50 );
}
}
}
@JayNeely
Copy link

Thanks for this fix; just discovered my non-event posts weren't showing in tag archives anymore.

@jonathanalves
Copy link

Man, thanks so much for this. You save my life =)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment