The WordPress summary function the_excerpt() default display number of words can be modified as the following:
function custom_excerpt_length( $length ) {
return 200;//200 Is the number of words you want to display
}
add_filter( ‘excerpt_length’, ‘custom_excerpt_length’, 999 );