Skip to content

Instantly share code, notes, and snippets.

@Alexander-Pop
Forked from thagxt/home.php
Last active February 1, 2019 16:54
Show Gist options
  • Save Alexander-Pop/62e08b234236269bc83a5841f2977792 to your computer and use it in GitHub Desktop.
Save Alexander-Pop/62e08b234236269bc83a5841f2977792 to your computer and use it in GitHub Desktop.
Limit WordPress' the_excerpt to the first full stop / period #wp
<?php
// Limit WordPress' the_excerpt to the first full stop / period
$strings = preg_split('/(\.|!|\?)\s/', strip_tags($post->post_content), 2, PREG_SPLIT_DELIM_CAPTURE);
$excerpt = apply_filters('the_excerpt', $strings[0] . $strings[1]);
echo $excerpt;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment