logo

This is an old version of this answer!

Return to the current answer
Tries to put this into functions.php, and commenting out all other filters for the_excerpt you might have there.

<?php

function trim_excerpt($excerpt) {
return substr($excerpt, 0, 200);
}

add_filter('the_excerpt', 'trim_excerpt');

?>

Eugen Rochko | 08/09/10 at 6:09pm

This is an old version of this answer!

Return to the current answer