Skip to content

Instantly share code, notes, and snippets.

@mattradford
Created October 17, 2014 08:53
Show Gist options
  • Save mattradford/f98aaa9b46ab18b0484c to your computer and use it in GitHub Desktop.
Save mattradford/f98aaa9b46ab18b0484c to your computer and use it in GitHub Desktop.
/* Limit Your Website Excerpt */
function word_limit($string, $max_words){
$post_words = explode(' ', $string);
$count = count($post_words);
$post_words = implode(' ', array_slice($post_words, 0, $max_words));
if($count > $max_words):
return $post_words . '...';
else:
return $post_words;
endif;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment