Skip to content

Instantly share code, notes, and snippets.

@trvswgnr
Created February 27, 2019 22:46
Show Gist options
  • Save trvswgnr/a1ce2d4ddbc862ce741672eea5f96313 to your computer and use it in GitHub Desktop.
Save trvswgnr/a1ce2d4ddbc862ce741672eea5f96313 to your computer and use it in GitHub Desktop.
use first paragraph for wordpress excerpt
add_filter( 'wp_trim_excerpt', 'awesome_excerpt', 10, 2 );
function awesome_excerpt($text, $raw_excerpt) {
if( ! $raw_excerpt ) {
$content = apply_filters( 'the_content', get_the_content() );
$text = substr( $content, 0, strpos( $content, '</p>' ) + 4 );
}
return $text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment