PHP 将Missing Alt标签添加到图像 - WordPress内容过滤器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 将Missing Alt标签添加到图像 - WordPress内容过滤器相关的知识,希望对你有一定的参考价值。

function add_alt_tags($content)
{
	global $post;
	preg_match_all('/<img (.*?)\/>/', $content, $images);
	if(!is_null($images))
	{
		foreach($images[1] as $index => $value)
		{
			if(!preg_match('/alt=/', $value))
			{
				$new_img = str_replace('<img', '<img alt="'.get_the_title().'"', $images[0][$index]);
				$content = str_replace($images[0][$index], $new_img, $content);
			}
		}
	}
	return $content;
}
add_filter('the_content', 'add_alt_tags', 99999);

以上是关于PHP 将Missing Alt标签添加到图像 - WordPress内容过滤器的主要内容,如果未能解决你的问题,请参考以下文章

将Alt标签添加到轮播

向轮播添加 Alt 标签

php 自动添加标题/ alt /描述到图像上传

将alt-tag添加到滑块 - Wordpress

使用 PHP 将图像添加到 mp3 文件的最佳方法?

在图像标签中使用 cshtml?