I'm building a theme which has the most recent post image, title and excerpt on the front page for each category. My problem is that I can only get the manual excerpt to appear at a full 55 words.
I have a shortened automatic excerpt elsewhere on category.php - but within the loop, using the_excerpt() and this in my functions file:
function custom_excerpt_length( $length ) {
return 10;
}
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
Ideally, to fit with the theme layout, and for ease of use, I want to be able to display an automatic excerpt of about 10-20 words outside the loop on my homepage. Is this possible?
Thanks!