Twentyten, plantilla por defecto en Wordpress, trae en su archivo functions.php una función que te permite limitar la cantidad de palabras a mostrar por
the_excerpt():
Código PHP:
Ver original<?php
/**
* Sets the post excerpt length to 40 characters.
*
* To override this length in a child theme, remove the filter and add your own
* function tied to the excerpt_length filter hook.
*
* @since Twenty Ten 1.0
* @return int
*/
function twentyten_excerpt_length( $length ) {
return 40;
}
add_filter( 'excerpt_length', 'twentyten_excerpt_length' );
?>
Saludos