Change excerpt length in WordPress

Written by on June 23, 2011 in WordPress - No comments
wordpress-excerpt

By default a WordPress excerpt is 55 words long. There may be case where you desire a different length for your excerpt. This is easy enough to change, just pop this into your functions.php file, and of course change the number to the length you want.

add_filter('excerpt_length', 'my_excerpt_length');
function my_excerpt_length($length) {
return 20; }

About the Author

Mike Ilsley "ilz" is a Boston based website designer, front-end developer, WordPress addict, owner of Beantown Design, and exclusive ThemeForest author. Check him out on Twitter, Facebook, Google+ and don't forget to subscribe to the WebDesign&Such email RSS feed. Also, check out his latest project, jQueryMobileShowcase.com.