/ Published in: PHP
URL: http://wordpress.org/support/topic/limit-the-number-of-words-in-excerpt-without-plugins
Expand |
Embed | Plain Text
<?php //this part goes to functions.php function string_limit_words($string, $word_limit) { //add a ... at last article when more than limit word count //otherwise } //this part goes to template $excerpt = get_the_excerpt(); ?>
You need to login to post a comment.
