您需要查看image_send_to_editor
过滤器
这不会更新现有记录,但如果您能正常工作,它将应用于每个新插入的图像。
非常基本的过滤器:
function give_linked_images_class($html, $id, $caption, $title, $align, $url, $size, $alt = \'\' ){
$html; //contains the string you need to edit, you might want to consider to rebuild the complete string.
return $html;
}
add_filter(\'image_send_to_editor\',\'give_linked_images_class\',10,8);