в файл темы functions.php
1 способ
add_filter( 'excerpt_length', function(){
return 20;
} );
2 способ
function wpdocs_custom_excerpt_length( $length ) {
return 160;
}
3 способ
function my_excerpt_length ( $ length ) {
возврат 80 ;
}
add_filter ( ‘excerpt_length’, ‘my_excerpt_length’ ) ;