您可以使用image_send_to_editor 过滤挂钩,实现你想要的。
<?php
add_filter( \'image_send_to_editor\', \'imagehtmlchange\', 10, 8);
function imagehtmlchange($html, $id, $caption, $title, $align, $url, $size, $alt) {
// your banny wrote - put your code here
return $html;
}
?>