Skip to content

Instantly share code, notes, and snippets.

@jswhisperer
Created May 26, 2013 13:03
Show Gist options
  • Save jswhisperer/5652720 to your computer and use it in GitHub Desktop.
Save jswhisperer/5652720 to your computer and use it in GitHub Desktop.
WordPress: Limit words function
<?php
function limit_words($string, $word_limit) {
$words = explode(' ', $string);
return implode(' ', array_slice($words, 0, $word_limit));
}
?>
#usage:
<?php echo limit_words(get_the_excerpt(), '41'); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment