Hi guys!
@kikozw, I’m sorry I didn’t reply to you sooner. I just saw this topic in my inbox, had some time to reply it, click on the link and came directly to this page – I didn’t even think about looking at “old” topics… my bad! Anyway, I already replied to your question (as you’ll see, though, I couldn’t help you – yet).
@expat, what are you trying to do exactly? You can use CSS rules to “style” the final featured image, or you can use WordPress hooks to modify the HTML structure. If you want to tweak the HTML, add the following snippet in your theme’s functions.php
file:
function expat_tweak_image( $html ) {
$html = '<img src="..." />'; // <-- tweak this as you please
return $html;
}
add_filter( 'post_thumbnail_html', 'expat_tweak_image', 10 );