From 1f344fc951d51ff853d290021ca27b469e051933 Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Fri, 11 Feb 2005 02:19:16 +0000 Subject: [PATCH] Shorten excerpt git-svn-id: https://develop.svn.wordpress.org/trunk@2262 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/template-functions-post.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;