Skip to content

Instantly share code, notes, and snippets.

@thagxt
Created March 23, 2016 21:10
Show Gist options
  • Save thagxt/2fff28cbc99ab37f5159 to your computer and use it in GitHub Desktop.
Save thagxt/2fff28cbc99ab37f5159 to your computer and use it in GitHub Desktop.
Limit WordPress' the_excerpt to the first full stop / period
<?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