/blog/articles/

WordPress Snippet: Get Attachment Alt Text

You would think that there is something like wp_get_attachment_image_alt() to get the alt text of an attachment, but there is not. So you have to use get_post_meta():

$alt = get_post_meta($attachment_id, '_wp_attachment_image_alt', true);

This will give you the alt text of the attachment.

Martin Wolf

Hi, I’m Martin Wolf, a Freelance Frontend Web Developer from Germany.
I believe in hard work and sharing what I know.

Contact me

Interested in working with me? Fantastic! The best way to get in touch is by email (hello@martinwolf.org). I’m looking forward to hearing from you.