function my_home_excerpt_length($length) {
return 500; //about ten lines
}
function my_home_post_cropper($content) {
if (!is_page() && (is_front_page() || is_home())) {
add_filter(\'excerpt_length\', \'my_home_excerpt_length\');
$content = wp_trim_excerpt($content);
remove_filter(\'excerpt_length\', \'my_home_excerpt_length\');
}
return $content;
}
add_filter(\'the_content\', \'my_home_post_cropper\', 99);