I thought something like this would work, but it didn't:
function laran_content($content) {
if(!is_singular()) {
ob_start();
the_excerpt();
$content = ob_get_clean();
}
return $content;
}
add_filter('thematic_content','laran_content');
I want to show excerpts on all index pages (home page, categories, archives, tags, etc.). How can I do it?