Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created November 11, 2020 14:42
Show Gist options
  • Save jchristopher/4f4f0938b82d05b00924953ceedd3a27 to your computer and use it in GitHub Desktop.
Save jchristopher/4f4f0938b82d05b00924953ceedd3a27 to your computer and use it in GitHub Desktop.
Implement a max length for global excerpt generation in SearchWP
<?php
// Implement a max length for global excerpt generation in SearchWP.
add_filter( 'searchwp\source\post\excerpt_haystack', function( $haystack ) {
$max_length = 10000;
if ( strlen( $haystack ) > $max_length ) {
$haystack = substr( $haystack, 0, $max_length );
}
return $haystack;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment