Alıntı
<?php
function resimgoster() {
error_reporting(0);
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 = 'resimyok.png';
}
return $resimbir;
}
function resimgoster_by_post($post) {
error_reporting(0);
$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 = 'resimyok.png';
}
return $resimbir;
}
?>
bu kodları functions.php ye ekleyin
benzer yazılar kodunun listeleme kısmındaki resim url yerine
<?php echo resimgoster(); ?>
bunu yapıstırın yeterlidir.