From c43b3244bdc30c3f2daf93c5f0dc9958e8d65f71 Mon Sep 17 00:00:00 2001 From: saxmatt Date: Fri, 11 Feb 2005 02:19:16 +0000 Subject: [PATCH] Shorten excerpt git-svn-id: http://svn.automattic.com/wordpress/trunk@2262 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 9e70c9258..ba582f698 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;