Skip to content

Instantly share code, notes, and snippets.

@mjinayan80
Last active September 16, 2018 11:01
Show Gist options
  • Save mjinayan80/46a9425f7bc2cbd5d8448d124271a6df to your computer and use it in GitHub Desktop.
Save mjinayan80/46a9425f7bc2cbd5d8448d124271a6df to your computer and use it in GitHub Desktop.
<?php
function limit_words($string, $word_limit) {
$words = explode(' ', $string);
return implode(' ', array_slice($words, 0, $word_limit));
}
Uages
<?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