I am trying to change the maximum length of the post excerpts displayed on a category page (see http://www.obamatheconservative.com/category/latest-updates). I am using TwentyTen as a parent theme.
I've tried two things, but had no luck with either:
1) adding the following to functions.php:
function new_excerpt_length($length) {
return 100;
}
add_filter('excerpt_length', 'new_excerpt_length');
So length should be max 100 words. But I still only got 40 words
2) Editing the wp_trim_excerpt() function in formatting.php
interestingly, it was already set to 55 -- but the post excerpts hadn't displayed more than 40 words, which suggests that the excerpt is not being produced via wp_trim_excerpt()
Any suggestions? thanks!