Shortened automatic excerpt outside the loop
-
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!
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Shortened automatic excerpt outside the loop’ is closed to new replies.