Tema klasörünüz içerisinde bulunan functions.php dosyasını açınız.
Dosyanın en sonuna kadar gelin ve ?> işaretinden önce bir üst satıra, şu kodları ilave edin:

function resimgoster() {
global $post, $posts;
$resimbir = '';
ob_start();
ob_end_clean();
$output = preg_match_all('//i', $post->post_content, $matches);
$resimbir = $matches [1] [0];

if(empty($resimbir)){ //Eğer resim eklememişseniz
$resimbir = "/images/default.jpg";
}
return $resimbir;
}


Bu işlemi yaptıktan sonra, functions.php dosyasını kaydedin ve index.php dosyasını açın.
index.php içerisinde resmi göstermek istediğiniz yere şu kodu yazın: