<a href=”<?php the_permalink() ?>” rel=”bookmark” title=”Permanent Link to <?php
the_title_attribute(); ?>”>
<?php
$soContent = $post->post_content;
$soImages = ‘~<img [^\>]*\ />~’;
preg_match_all( $soImages, $soContent, $thePics );
$allPics = count($thePics[0]);
if( $allPics > 0 ){
echo $thePics[0][0];
}
else {
echo ”;
}
?></a>
