I'm using a Thematic child theme. I'd like to show thumbnails with the excerpts on the Category pages, but NOT on the main post page. How do I do this?
I've put the following code in my functions.php and unfortunately I can't get it to work.
add_theme_support('post-thumbnails');
set_post_thumbnail_size( 250, 250, true ); // 250 pixels wide by 250 pixels tall, hard crop mode
function my_post_title($title) {
if (is_category()) {
return get_the_post_thumbnail(NULL, 'thumbnail') . $title;
} else {
return $title;
}
}
add_filter('thematic_postheader_posttitle', 'my_post_title');
Thank you!!
Robin