Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created April 22, 2019 12:52
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/d17b4031a43910df0e911fcdc64ba90f to your computer and use it in GitHub Desktop.
Save jchristopher/d17b4031a43910df0e911fcdc64ba90f to your computer and use it in GitHub Desktop.
Modify comments prior to SearchWP indexing them
<?php
add_filter( 'searchwp_indexer_comment', function( $comment ) {
// TODO: manipulate the $comment object in any way you see fit
// @link https://developer.wordpress.org/reference/classes/wp_comment/
return $comment;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment