Skip to content

Instantly share code, notes, and snippets.

@jamigibbs
Created August 17, 2011 10:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamigibbs/1151259 to your computer and use it in GitHub Desktop.
Save jamigibbs/1151259 to your computer and use it in GitHub Desktop.
Custom Content Excerpt (WordPress)
function jg_excerpt($num) {
$limit = $num+1;
$excerpt = explode(' ', get_the_excerpt(), $limit);
array_pop($excerpt);
$excerpt = implode(" ",$excerpt).""; // Put anything between the "" for end of excerpt
echo $excerpt;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment