Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created April 24, 2017 15:42
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 jchristopher/f41adf7ec4c207c893039778d1192b9b to your computer and use it in GitHub Desktop.
Save jchristopher/f41adf7ec4c207c893039778d1192b9b to your computer and use it in GitHub Desktop.
LIKE matching Custom Fields in SearchWP
<?php
function my_searchwp_custom_field_keys_like( $keys ) {
$keys[] = 'acf_field_name_%'; // will match any Custom Field starting with acf_field_name_
return $keys;
}
add_filter( 'searchwp_custom_field_keys', 'my_searchwp_custom_field_keys_like' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment