Change Excerpt Length in WordPress
WordPress limits excerpt lengths to 55 words. If you need to change that, then you can add this code to your functions file.
functionnew_excerpt_length($length) {
return 100;
}
add_filter(‘excerpt_length’, ‘new_excerpt_length’);