Skip to content

Instantly share code, notes, and snippets.

@djrmom
Last active April 19, 2018 16:21
Show Gist options
  • Save djrmom/d35379a6ba014a3650a0157bd9c4281f to your computer and use it in GitHub Desktop.
Save djrmom/d35379a6ba014a3650a0157bd9c4281f to your computer and use it in GitHub Desktop.
facetwp check main query with uri
<?php
add_filter( 'facetwp_is_main_query', function( $is_main_query, $query ) {
if ( 'residents' == FWP()->helper->get_uri() && 'resident' != $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