Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save BruceMcKinnon/8cdac576b6048d9e9f5f4c74ea0c4ba2 to your computer and use it in GitHub Desktop.
Save BruceMcKinnon/8cdac576b6048d9e9f5f4c74ea0c4ba2 to your computer and use it in GitHub Desktop.
WP Provide first sentence only for the excerpt
add_filter(
'get_the_excerpt',
function ($excerpt) {
// Split the except into sentances
$re = '/(?<=[.!?]|[.!?][\'"])\s+/';
$sentences = preg_split($re, $excerpt, -1, PREG_SPLIT_NO_EMPTY);
return $sentences[0];
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment