Skip to main content
Displaying a limited number of words
<?php
function limit_words( $string, $word_limit ) { $words = explode(" ", $string);
return implode(" ",array_splice( $words, 0, $word_limit ));
}
echo limit_words( $navComments, 15 ) . " ...";
?>
Example:
Comments
Post a Comment