Hi all,
I'm using a child theme of Thematic 0.9.7.7 and I have this in my child themes functions.php:
function my_postheader($postheader) {
$ph = $postheader;
$postheader = '<a href="' . get_permalink();
$postheader .= '" rel="bookmark" title="Permanent Link to ';
$postheader .= get_the_title() . '"><img src="';
$postheader .= get_bloginfo('url') . '/wp-content/uploads/';
$values = get_post_custom_values("thumbnail");
$postheader .= $values[0] . '" alt="" class="postimg" /></a>';
$postheader .= $ph;
return $postheader;
}
add_filter('thematic_postheader', 'my_postheader');
Is it "safe" to remove this code from my functions and post thumbnails will still work with the current version of Thematic? Thanks in advance!