How To Change Excerpt Length Your WordPress Excerpt
By JH — 10th December 2009For many WordPress user, they need different excerpt length, some of them need more longer and some user need more shorter. To change this length is easy just write this code on your functions.php theme files
add_filter('excerpt_length', 'my_excerpt_length');
function my_excerpt_length($length) {
return 60;
}
It’s Easy right? I hope you can create more wonderful code and create better wordpress excerpt.





