Skip to content

Instantly share code, notes, and snippets.

@rafaehlers
Last active October 21, 2024 20:26
Show Gist options
  • Save rafaehlers/a0b13a544ad248d53aab8eee734051c2 to your computer and use it in GitHub Desktop.
Save rafaehlers/a0b13a544ad248d53aab8eee734051c2 to your computer and use it in GitHub Desktop.
Returns an exact match
<?php // DO NOT copy this line
function gv_search_operator( $operator, $filter = array(), $context = null ){
return 'is';
}
add_filter( 'gravityview_search_operator', 'gv_search_operator');
// This disallows empty field values (It must be used in conjunction with the filter above)
add_filter( 'gravityview/search/ignore-empty-values', function() {
return false;
});
@rafaehlers
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment