使用过滤器wp_get_attachment_image_attributes
例如,我可以向图像附件添加属性:
function my_filter( $attr, $attachment, $size )
{
$attr[\'data-custom\'] = \'hello\';
return $attr;
}
add_filter( \'wp_get_attachment_image_attributes\', \'my_filter\', 10, 3 );
但是,此筛选器
not 影响
img
s在岗位上。
我已经设法做到了image_send_to_editor
过滤,但这样属性就会“硬编码”到帖子的源代码中,所以我对这种方法不满意。
是否有添加/编辑的方法posts 图像的属性作为img
是否将呈现到页面源中?
换句话说,有没有办法扩展wp_get_attachment_image_attributes
到帖子中的图像?