Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created April 26, 2019 15:26
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/6123b52129f64fbc94189361056b37da to your computer and use it in GitHub Desktop.
Save jchristopher/6123b52129f64fbc94189361056b37da to your computer and use it in GitHub Desktop.
Control the length of excerpts generated with SearchWP's highlighter
<?php
// When highlighting, tell SearchWP to generate excerpts that are 75 words long.
add_filter( 'searchwp_th_num_words', function( $length ) {
return 75;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment