Hey I just wanted to know how to add an element after the first thumbnail image in my loop. Basically I want an HTML div tag inserted after the first image in my post. Anyone know how to do that in WordPress, heres what I have:
<?php if(has_post_thumbnail()){
$post_pic = get_the_post_thumbnail();
$post_pic .= '<div></div>';
return $post_pic;
?>