Skip to content

Instantly share code, notes, and snippets.

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