可行的解决方案Ifound 正在将帖子标题添加到缺少ALT
属性
将以下内容添加到functions.php
文件:
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="\'.$post->post_title.\'"\', $images[0][$index]);
$content = str_replace($images[0][$index], $new_img, $content);
}
}
}
return $content;
}
add_filter(\'the_content\', \'add_alt_tags\', 99999);
或者,如果要用文件名替换属性,可以使用
get_attached_file 的函数
$new_img
变量