Hello all, I am looking to change the default size of the .wp-post-image from the default 100x100 to one with a height of 300px, or even better, "medium" size as set in my Wordpress dashboard. I have been messing around with variations of the following filter with no luck.
//filter to change thumbnail size
function childtheme_post_thumbs($content) {
if (is_category('18')) {
$size = apply_filters( 'thematic_post_thumb_size' , array('medium') );}
return $content;
}
add_filter('thematic_post_thumbs', 'childtheme_post_thumbs')
Does anyone have any ideas?
Many thanks
Paul