这个alt
标记已采用文件名,但如果出于某种原因,您需要将连字符替换为空格并包含alt标记的重复标题,则可以执行以下操作:
function wpse_120228_seomadness($html, $id, $caption, $title, $align, $url, $size, $alt) {
$alttitle = str_replace(\'-\', \' \', $alt);
$img = get_image_tag($id, $alttitle, $alttitle, $align, $size);
$html = \'<a href="\' . esc_attr($url) . \'">\' . $img . \'</a>\';
return $html;
}
add_filter( \'image_send_to_editor\', \'wpse_120228_seomadness\', 10, 9 );
这只会影响添加代码后插入到编辑器中的图像,而不会影响站点上已有的图像。