WordPress 4.4在使用the_post_thumbnail函数时使用srcset添加了多个图像大小。在没有srcset的情况下只能得到一个图像大小吗?
我知道可以添加一个过滤器来从所有图像中禁用srcset,但我只希望在调用特定缩略图大小时(例如,只在调用完整图像大小时)禁用srcset。
发布于 2021-12-30 02:20:26
没有过滤器是必要的。最简单的解决方案如下:
// exclude any attribute you want to keep from the list
// choose any defined image size, ie. large, medium, etc
echo preg_replace( '/(width|height|srcset|sizes)="[^"]*"/', '', get_the_post_thumbnail( get_the_ID(), 'large') );https://wordpress.stackexchange.com/questions/214066
复制相似问题