stuart-d
10/23/2013 - 10:52 PM

Limit WordPress excerpt

Limit WordPress excerpt

function string_limit_words( $string, $word_limit ) {

  $words = explode( ' ', $string, ( $word_limit + 1 ) );
  if( count( $words ) > $word_limit )
  array_pop( $words );
  return implode( ' ', $words );
  
}