Skip to content

Instantly share code, notes, and snippets.

@braginteractive
Created December 22, 2017 18:56
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 braginteractive/d01f0fae36027651ce65941de80acee2 to your computer and use it in GitHub Desktop.
Save braginteractive/d01f0fae36027651ce65941de80acee2 to your computer and use it in GitHub Desktop.
Edit the WordPress excerpt to remove everything after the first sentence.
/**
* Find the first period in the excerpt and remove everything after it.
*
*
* @param string $excerpt The post excerpt.
*/
function end_with_sentence($excerpt) {
return substr($excerpt,0,strpos($excerpt,'.')+1);
}
add_filter( 'the_excerpt', 'end_with_sentence');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment