Skip to content

Instantly share code, notes, and snippets.

@brettsnippets
Created May 20, 2013 21:41
Show Gist options
  • Save brettsnippets/5615805 to your computer and use it in GitHub Desktop.
Save brettsnippets/5615805 to your computer and use it in GitHub Desktop.
WordPress: Custom Excerpt
function get_custom_excerpt($length) {
$excerpt = get_the_content();
$excerpt = preg_replace(" (\[.*?\])",'',$excerpt);
$excerpt = strip_shortcodes($excerpt);
$excerpt = strip_tags($excerpt);
$excerpt = substr($excerpt, 0, $length);
$excerpt = substr($excerpt, 0, strripos($excerpt, " "));
$excerpt = trim(preg_replace( '/\s+/', ' ', $excerpt));
$excerpt = $excerpt.'...';
return $excerpt;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment