请求图像附件时更改 URL - Wordpress

Change URL when requesting image attachement - Wordpress

我正在尝试制作一个 wordpress 插件来生成压缩图像 我需要知道我可以用来替换的钩子或动作是什么 图片 url 与调用 wp_get_attachment_image 时压缩的图片,无需在数据库中更改它们 有任何想法吗 ?? 谢谢

试试这个:

function alter_image_attributes($attr) {
  $attr['data-src'] = 'compressed_image_url';
  return $attr;
}
add_filter( 'wp_get_attachment_image_attributes', 'alter_image_attributes');

wp_get_attachment_image( $attachment_id, $size, $icon, $attr );

管理功能参数,如。

$size = "缩略图', 'medium' ,'full', 'any custom size defined'