diff --git a/wp-includes/template-functions-post.php b/wp-includes/template-functions-post.php index 9e70c92588..ba582f6989 100644 --- a/wp-includes/template-functions-post.php +++ b/wp-includes/template-functions-post.php @@ -123,7 +123,7 @@ function get_the_excerpt($fakeit = true) { $output = $post->post_content; $output = strip_tags($output); $blah = explode(' ', $output); - $excerpt_length = 120; + $excerpt_length = 70; if (count($blah) > $excerpt_length) { $k = $excerpt_length; $use_dotdotdot = 1;