functions.php icerisine bunlarida ekle

function resimgoster() {
 global $post, $posts;
 $resimbir = '';
 ob_start();
 ob_end_clean();
 $output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches);
 $resimbir = $matches [1] [0];

 if(empty($resimbir)){ //Eğer resim eklememişseniz
 $resimbir = "/images/default.jpg";
 }
 return $resimbir;
}
Daha sonra temandaki
<?php the_content(' '); ?>
asagidaki ile degistir

<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><img src="<?php echo resimgoster() ?>" /></a>