/ Published in: PHP
Simple function - just place it in your theme's functions.php file, save, and you're good to go. If an image in your content is missing the alt tag, it adds that posts title as the alt tag for the image.
It's been recommended to me that I shouldn't be using regex to parse HTML, and I made an attempt to do this with DOMDocument, but it wasn't working out to well. If there are any DOMDocument ninjas around, maybe they could slice this up a little easier.
Update: removed the "(.*?)" from the '/alt=/' regex, just in case an image had an alt already defined, but using single quotes instead.
It's been recommended to me that I shouldn't be using regex to parse HTML, and I made an attempt to do this with DOMDocument, but it wasn't working out to well. If there are any DOMDocument ninjas around, maybe they could slice this up a little easier.
Update: removed the "(.*?)" from the '/alt=/' regex, just in case an image had an alt already defined, but using single quotes instead.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
function add_alt_tags($content) { global $post; { foreach($images[1] as $index => $value) { { } } } return $content; } add_filter('the_content', 'add_alt_tags', 99999);
URL: https://forrst.com/posts/Add_Missing_Alt_tags_to_Images_WordPress_Conte-DMO