CSS
将以下代码添加到CSS文件中。这将使图像可根据屏幕大小进行缩放。
如果只想为特定的图像类进行设置,显然要更改class标记
img{ max-width: 100%; }
img{ -ms-interpolation-mode: bicubic; }
然后你需要运行一个过滤器来阻止wordpress自动向你想要的图像添加图像尺寸。
function remove_wp_width_height($string){
return preg_replace(\'/\\/i\', \'\',$string);
}
然后,当您需要调用缩略图时,请在模板中调用,而不是使用
the_post_thumbnail();
像这样使用新功能
echo remove_wp_width_height(get_the_post_thumbnail(get_the_ID(),\'large\'));