I implemented a new filter named thematic_content into the current SVN copy. You can return the following constants:
- full : the full post content including .. More .. is displayed
- excerpt : the excerpt of the post is displayed
- none : nothing will be displayed
You could use the following code snippet in your child theme's functions.php to display the full post instead of the excerpt on a category page:
function childtheme_content($content) {
if (is_category()) {
$content= 'full';}
return $content;
}
add_filter('thematic_content', 'childtheme_content');
Remember that you need the current SVN copy!
Cheers,
Chris