Skip to content

Instantly share code, notes, and snippets.

@djrmom
Created February 20, 2018 00:09
Show Gist options
  • Save djrmom/a1c2f439f7955e180b39821b0c1a12c8 to your computer and use it in GitHub Desktop.
Save djrmom/a1c2f439f7955e180b39821b0c1a12c8 to your computer and use it in GitHub Desktop.
facetwp conditional filter
<?php
add_filter( 'facetwp_use_search_relevancy', function( $value, $class ) {
if ( 'foo/bar' == $class->http_params['uri'] ) {
return false;
}
return $value;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment