这个image_send_to_editor
hook传递的参数范围很广,不仅仅是html。其中之一就是尺寸。要获得它,请钩住过滤器,使其通过8作为支持的参数数:
add_filter(\'image_send_to_editor\', \'my_filter_cb\'), 10, 8);
并修改函数标题以获取所有函数:
function my_filter_cb ($html, $id, $caption, $title, $align, $url, $size, $alt) {
...
}