Skip to content

Instantly share code, notes, and snippets.

@djrmom
Created January 16, 2019 19:15
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 djrmom/6f5967bde213194d1ff49a754aa8a2fc to your computer and use it in GitHub Desktop.
Save djrmom/6f5967bde213194d1ff49a754aa8a2fc to your computer and use it in GitHub Desktop.
<?php
add_filter( 'facetwp_is_main_query', function( $is_main_query, $query ) {
if ( 'search' == FWP()->helper->get_uri() && ! in_array( 'secondary_content', (array) $query->get( 'post_type' ) ) {
return false;
}
return $is_main_query;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment