wp_get_attachment_caption to pull Image Caption or alt
You can directly get an attachment’s meta data if you have it’s ID. The alt data for an attachment is stored in _wp_attachment_image_alt. So, you can use: $alt = get_post_meta( $attachment->ID, ‘_wp_attachment_image_alt’, true); To get the caption of an image, you can use wp_get_attachment_metadata(). $metadata = wp_get_attachment_metadata( $id ); $caption = $metadata[‘image_meta’][‘caption’]; EDIT Based on … Read more