Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created April 26, 2019 15:32
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/ad7e1db12b33652fa4a7ce4fff19ea2d to your computer and use it in GitHub Desktop.
Save jchristopher/ad7e1db12b33652fa4a7ce4fff19ea2d to your computer and use it in GitHub Desktop.
Pre-process content before it is sent to SearchWP's highlighter
<?php
// Pre-process content before it is sent to SearchWP's highlighter.
add_filter( 'searchwp_th_pre_process_content', function( $content ) {
// TODO: Customize $content in any way you see fit.
return $content;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment