skip to Main Content

How to get an image metadata such as alt text, caption and description from media library in wordpress – SEO

I am trying to get metadata associated with the featured image but get_post_meta keeps returning empty. $image_alt_text = get_post_meta($image_id, '_wp_attachment_image_alt', true); This works and returns the data, but the code below does not work: $image_description = get_post_meta($image_id, '_wp_attachment_description', true); $image_caption…

VIEW QUESTION
Back To Top
Search