Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Created June 19, 2017 15:38
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 mgibbs189/d097d6a0ae06f316a3212c3c4c20eee5 to your computer and use it in GitHub Desktop.
Save mgibbs189/d097d6a0ae06f316a3212c3c4c20eee5 to your computer and use it in GitHub Desktop.
FacetWP - ignore Membership 2 query
<?php
// Add to your (child) theme's functions.php
add_filter( 'facetwp_is_main_query', function( $is_main_query, $query ) {
if ( 'ms_relationship' == $query->get( 'post_type' ) ) {
$is_main_query = 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