hocam the_content kodunuz aynı şekilde kalsın, temanızdaki functions.php içerisine şu kodları ekleyin:
function anasayfada_sadece_ilk_resim( $icerik ) {
if( is_home() || is_category() || is_front_page() ){
$output = @preg_match_all('/<a(.*?)><img.+src=[\'"]([^\'"]+)[\'"].*><\/a>/i', $icerik, $matches);
if( empty( $matches[0][0] ) ){
return $icerik;
} else {
return $matches[0][0];
}
} else {
return $icerik;
}
}
add_filter( 'the_content', 'anasayfada_sadece_ilk_resim' );