seemsiyah adlı üyeden alıntı:
mesajı görüntüle
Edit: Hocam ekledim son durum şu;
http://m1080p.net/
18
●1.204
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 <?php verdiğiniz kod ?>
<?php
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;
}
?>