The_Excerpt Length

I found a small yet very useful code for controlling the length of the_excerpt on WordPress.

<?php if ($post->post_excerpt != “” ) {
the_excerpt();
}
else {
the_content_rss(”, FALSE, ”, 26);
}
?>

Replace 26 for the numbers of  words to display on your excerpt.

Also check out Word Count Tool .