You will need to replace the_content()with the_excerpt()in the relevant template.
The best way of doing this is to create a child theme: http://codex.wordpress.org/Child_Themes
Hi! I’m trying to do the same thing as fatewithgernweh. I can’t find the template where the_content() needs to be replacted with the_excerpt()? Could you help me out?
Thank you!
I can’t find the template where the_content() needs to be replacted with the_excerpt()? Could you help me out?
It’s in content.php on line 42.
<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'reddle' ) ); ?>
Just a heads-up that the best way to make changes to a theme is to use a child theme, so your tweaks won’t be overwritten when updating the theme. Here are some guides in case you haven’t made one before:
http://codex.wordpress.org/Child_Themes
http://op111.net/53/
p.s. in future, if you need help, please start a new thread rather than adding to one that’s already marked as resolved – thanks!