There are examples of how to add post with featured image programmatically in wordpress, but I need to add post with featured image and ALT text too. How can I do something like that?
Thank you.
There are examples of how to add post with featured image programmatically in wordpress, but I need to add post with featured image and ALT text too. How can I do something like that?
Thank you.
You must be logged in to post a comment.
If you look at the source for the
wp_get_attachment_image
function, you can see how the alt text is being fetched:From there it is easy enough to figure out how to update the alt text.