Hocam şöyle bir kod buldum single.php de denedim yazıdaki resmin başlığını ve alternatif metnini çekip gösteriyor.
$args = array( 'post_type' => 'attachment', 'orderby' => 'menu_order', 'order' => 'ASC', 'post_mime_type' => 'image' ,'post_status' => null, 'numberposts' => null, 'post_parent' => $post->ID );
$attachments = get_posts($args);
if ($attachments) {
foreach ( $attachments as $attachment ) {
$alt = get_post_meta($attachment->ID, '_wp_attachment_image_alt', true);
$image_title = $attachment->post_title;
$caption = $attachment->post_excerpt;
$description = $image->post_content;
?>
Hocam denedim ama olmadı. Siz tam olarak single.php de nereye ekliyorsunuz bu kodu. Ben nin hemen üstüne yapıştırdım.