向图像添加缺少的Alt标记-WordPress内容筛选器
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了向图像添加缺少的Alt标记-WordPress内容筛选器相关的知识,希望对你有一定的参考价值。
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.
function add_alt_tags($content) { global $post; { foreach($images[1] as $index => $value) { { } } } return $content; } add_filter('the_content', 'add_alt_tags', 99999);
以上是关于向图像添加缺少的Alt标记-WordPress内容筛选器的主要内容,如果未能解决你的问题,请参考以下文章