Replace full content with an excerpt
Decide about the_excerpt() or the_content() with a conditional: is_singular(). You can use a plugin and filter the_content depending on the current page’s type: archive or singular. But you can use it in your theme too. add_filter( ‘the_content’, ‘t5_replace_content_with_excerpt’, 100 ); /** * Return excerpt if we are not on a singular post view. * * … Read more