Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created September 29, 2020 01:08
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/ad15ffd9a1248d173009fea06f5bddf9 to your computer and use it in GitHub Desktop.
Save jchristopher/ad15ffd9a1248d173009fea06f5bddf9 to your computer and use it in GitHub Desktop.
Exclude email addresses from SearchWP's index
<?php
add_filter( 'searchwp\tokens', function( $tokens ) {
return array_filter( $tokens, function( $token ) {
return ! is_email( $token );
} );
}, 5 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment