Skip to content

Instantly share code, notes, and snippets.

@searchwpgists
Created March 16, 2022 16:42
Show Gist options
  • Select an option

  • Save searchwpgists/26e075e513688e038af8b4b540ff6c4c to your computer and use it in GitHub Desktop.

Select an option

Save searchwpgists/26e075e513688e038af8b4b540ff6c4c 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