Here is the Way to make your posts experpts custom lenth
Write it in your functions.php and make the value as you want.
function custom_excerpt_length() {
return 25;
}
add_filter('excerpt_length', 'custom_excerpt_length' );
Keep learning