TEHET adlı üyeden alıntı

O zaman bu olabilir.

$attachment_id = 8; // attachment ID

$image_attributes = wp_get_attachment_image_src( $attachment_id ); // returns an array
if( $image_attributes ) {
?>



https://codex.wordpress.org/Function_Reference/wp_get_attachment_image_src


Bu kodlar alternatif metni nasıl çekecek anlayamadım hocam. src, width ve height değerlerini çekebiliyor. Bu arada yardım etmeye çalışıyorsunuz çok teşekkür ederim.

Ek Olarak:

cihaneken adlı üyeden alıntı

Buldum hocam, test ettim onayladım :D yazıdaki resmin alt yazısını gösteriyor.

$thumb_id = get_post_thumbnail_id(get_the_ID());
$alt = get_post_meta($thumb_id, '_wp_attachment_image_alt', true);
if(count($alt)) echo $alt;
?>


Hocam get_post_thumbnail_id(get_the_ID()); öne çıkarılmış resmin ID'sini alıyor. Yani yazıdaki resim öne çıkarılmamışsa işe yaramaz. Sizin yazıdaki resim öne çıkarılmış olmasın? :)