如何在特色图片中使用<图片></图片>标签 时间:2020-10-29 作者:user196780 在我的WordPress站点5.5.1版本中,我们上载jpeg图像,因此我们希望提高上载webp图像的页面速度。少数浏览器不支持Webp图像。那么如何在WordPress中切换图像格式 1 个回复 SO网友:romand 您应该将回退添加到webp img标记。在所附链接中有一些策略,最相关的是: <picture> <source srcset="img/awesomeWebPImage.webp" type="image/webp"> <source srcset="img/creakyOldJPEG.jpg" type="image/jpeg"> <img src="img/creakyOldJPEG.jpg" alt="Alt Text!"> </picture> 资料来源:https://css-tricks.com/using-webp-images/ 文章导航