Quantcast
Channel: The Web Design Blog of TheLibzter.com » Useful Scripts and Codes
Viewing all articles
Browse latest Browse all 10

WordPress: How to change the length of blog post excerpts

$
0
0
Here is the line of code that I use to change the default length (55 words) of excerpts in WordPress. Copy and paste this snippet into your functions.php file: function new_excerpt_length($length) { return 20; } add_filter('excerpt_length', 'new_excerpt_length'); Simply change the … Continue reading

Viewing all articles
Browse latest Browse all 10

Trending Articles