Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created March 26, 2020 16:18
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/f31eb7dc131aeec969b826c4965209a8 to your computer and use it in GitHub Desktop.
Save jchristopher/f31eb7dc131aeec969b826c4965209a8 to your computer and use it in GitHub Desktop.
Customize document content before it is indexed by SearchWP
<?php
// Customize document content before it is indexed by SearchWP.
add_filter( 'searchwp\document\content', function( $content, $the_post ) {
if ( 18 === $the_post->ID ) {
// Add 'coffee' to the document content so it can be searched.
$content .= ' coffee';
}
return $content;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment