I was searching the forum for post thumbnail help and I found this code that I have displayed below. The problem I am having is that the text appears above the title. I did find a topic on this but it didn't fix the problem. (http://themeshaper.com/forums/topic/inserting-post-thumbnails-in-thematic#post-10582)
What I would like is for the thumbnail to wrap the text when aligned left. I would also like to know how to make the thumbnail clickable and link to the full length post.
// Thumbnails
add_theme_support('post-thumbnails');
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');