Skip to content

Instantly share code, notes, and snippets.

@zanetaylor
Created August 7, 2013 19:45
Show Gist options
  • Save zanetaylor/6177794 to your computer and use it in GitHub Desktop.
Save zanetaylor/6177794 to your computer and use it in GitHub Desktop.
/* ********************
* Limit post excerpts. Within theme files used as
* print string_limit_words(get_the_excerpt(), 20);
******************************************************************** */
function string_limit_words($string, $word_limit) { $words = explode(' ', $string, ($word_limit + 1)); if(count($words) > $word_limit) array_pop($words); return implode(' ', $words); }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment