是否要保留“图像标题”属性?如果没有,这里有一个代码为您修复:
add_filter(\'the_content\', \'remove_title_attr\');
function remove_title_attr($text) {
// Get all title="..." tags from the html.
$result = array();
preg_match_all(\'|title="[^"]*"|U\', $text, $result);
// Replace all occurances with an empty string.
foreach($result[0] as $html_tag) {
$text = str_replace($html_tag, \'\', $text);
}
return $text;
}
Found it here. 它在c9上工作。io。我相信在你的情况下也会奏效。
Edit 1: 这将从所有帖子的内容中删除title属性。是否要从所有元素中全局删除它?