Home › Forums › Add-ons › Repeater Field › Getting Alt Text to show up in Image Field › Reply To: Getting Alt Text to show up in Image Field
How did you add this image alt text.
WP stores alt text added when editing an image in the media folder to the meta key of _wp_attachment_image_alt
so this will work to retrieve it
$alt = get_post_meta($attachment_id, '_wp_attachment_image_alt', true);
But if you added alt text through some other means then it could be stored in some other way. Please explain further how the alt text was added if this is the case.
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.