Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created February 14, 2019 17:33
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/797410056b29519f605c48ec0593d62e to your computer and use it in GitHub Desktop.
Save jchristopher/797410056b29519f605c48ec0593d62e to your computer and use it in GitHub Desktop.
Customize content before SearchWP highlights it
<?php
function my_searchwp_th_pre_process_content( $content ) {
// TODO: manipulate $content in any way you'd like.
return $content;
}
add_filter( 'searchwp_th_pre_process_content', 'my_searchwp_th_pre_process_content' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment