Skip to content

Instantly share code, notes, and snippets.

@ArnoutPullen
Created October 23, 2019 16:05
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 ArnoutPullen/0343198043fcc3858a64964ed8ef5bdf to your computer and use it in GitHub Desktop.
Save ArnoutPullen/0343198043fcc3858a64964ed8ef5bdf to your computer and use it in GitHub Desktop.
Integrate Toolset Views with ElasticPress
<?php
/**
* Integrate Toolset Views with ElasticPress
* https://github.com/10up/ElasticPress#supported-wp_query-parameters
* https://toolset.com/documentation/programmer-reference/views-filters/#wpv_filter_query
*/
function ep_toolset_integration( $query, $view_settings, $view_id ) {
$query['ep_integrate'] = true;
return $query;
}
add_filter('wpv_filter_query', 'ep_toolset_integration', 10, 3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment