Skip to content

Instantly share code, notes, and snippets.

@searchwpgists
Created March 28, 2022 13:47
Show Gist options
  • Save searchwpgists/4a01c36f86316b0c7c0199eec7640427 to your computer and use it in GitHub Desktop.
Save searchwpgists/4a01c36f86316b0c7c0199eec7640427 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