Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Last active March 26, 2020 14:27
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/eda7170b80477e0afe96d0d5a26e7309 to your computer and use it in GitHub Desktop.
Save jchristopher/eda7170b80477e0afe96d0d5a26e7309 to your computer and use it in GitHub Desktop.
Enable Comment Author Email indexing in SearchWP
<?php
// Enble Comment Author Email indexing in SearchWP.
add_filter( 'searchwp\source\post\attributes\comments\email', function( $enabled, $args ) {
return true;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment