Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Last active June 3, 2021 03:17
Show Gist options
  • Save mgibbs189/e07ddcd6bb4e028a9a2596c91b454e0f to your computer and use it in GitHub Desktop.
Save mgibbs189/e07ddcd6bb4e028a9a2596c91b454e0f to your computer and use it in GitHub Desktop.
FacetWP - disable ElasticPress during querying
<?php
function disable_elasticpress_integration( $query_args ) {
add_filter( 'ep_skip_query_integration', '__return_true' );
return $query_args;
}
add_filter( 'facetwp_query_args', 'disable_elasticpress_integration' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment