How To Retrieve An Image Attachment's Alt Text?
-
How To Retrieve slider Image Attachment’s Alt Text?
<?php $thumb_id = get_post_thumbnail_id(get_the_ID()); ?>
<?php $image = wp_get_attachment_image_src(get_sub_field(‘images’), ‘full’); ?>
<?php $thumb = wp_get_attachment_image_src(get_sub_field(‘images’), ‘thumbnail’); ?>
<?php $alt_text = get_post_meta($thumb_id , ‘_wp_attachment_image_alt’, true); ?>
<img src=”<?php echo $image[0]; ?>” data-thumb=”<?php echo $thumb[0]; ?>” alt=”<?php echo $alt_text; ?>” />
- The topic ‘How To Retrieve An Image Attachment's Alt Text?’ is closed to new replies.