Limit Post Excerpt Length Using Number Of Words

1
2
function excerpt($limit) {
$excerpt = explode(' ', get_the_excerpt(), $limit);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Now, in every place where you use the_excerpt() or the_content() in your loop, use excerpt($limit) or content($limit).

For example if you want to limit your excerpt length to 30 words use echo excerpt(30) and for content.

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.