janboddez/share-on-mastodon

Alt Text on Images

Closed this issue · 2 comments

New to Mastodon and enjoying using this to share from WordPress

I see Alt text on images is a big thing on Mastodon, is there a way to add this?

You need to add alt text on your images in WordPress like normal, and then that carries over to Mastodon just fine. The key concept is that alt text shouldn't be seen as being just a Mastodon thing.

That is correct. If an image has an alt text in WordPress's media library, it should just show up on Mastodon as well.

For those interested, it is covered by

$alt = get_post_meta( $image_id, '_wp_attachment_image_alt', true );
and the code that immediately follows it.