add_filter( 'the_content', 'content_on_home_page');
function content_on_home_page( $content ) {
if( ( is_home() || is_front_page() ) && in_the_loop() ) {
$content = wp_trim_words( $content, 55 );
}
return $content;
}
Этот код нужно добавить в файл functions.php в Вашей теме