Skip to content

Instantly share code, notes, and snippets.

@MZAWeb
Created September 13, 2012 20:34
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 MZAWeb/3717426 to your computer and use it in GitHub Desktop.
Save MZAWeb/3717426 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'pre_get_posts', 'tribe_filters_query' );
function tribe_filters_query( $query ) {
if ( is_main_query() && the_user_just_made_a_search_in_the_filter_view() ) {
$query = apply_filters( 'tribe_filters_query_args', $query );
}
return $query;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment