[请求图像附件时更改URL-Wordpress [关闭]

问题描述 投票:-1回答:2

我正在尝试制作一个wordpress插件来生成压缩图像我需要知道什么可以用来代替的钩子或动作调用wp_get_attachment_image时,图像网址带有压缩后的网址,而无需在数据库中进行更改有任何想法吗 ??谢谢

php wordpress plugins
2个回答
0
投票
尝试一下:

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


0
投票
wp_get_attachment_image($ attachment_id,$ size,$ icon,$ attr);

管理类似的功能参数。

$ size =“缩略图”,“中等”,“完整”,“定义的任何自定义大小”

© www.soinside.com 2019 - 2024. All rights reserved.