Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Last active April 22, 2019 13:20
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/cb496d069a73c79985a3e47295dfd459 to your computer and use it in GitHub Desktop.
Save jchristopher/cb496d069a73c79985a3e47295dfd459 to your computer and use it in GitHub Desktop.
Modify post(s) before SearchWP indexes them
<?php
// Modify post(s) before SearchWP indexes them.
add_filter( 'searchwp_pre_set_post', function( $the_post ) {
// TODO: Modify $the_post in any way you see fit.
return $the_post;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment