【发布时间】:2026-01-01 08:10:02
【问题描述】:
WordPress 使用以下属性呈现缩略图:
<img width="100" height="200" ...
IE7\8 要求是这样的:
<img width="100px" height="200px" ...
(确切的问题在这里:Wordpress featured images not showing up in IE8)
我深入研究了核心,找到了渲染高度\宽度的代码: http://core.trac.wordpress.org/browser/trunk/wp-includes/media.php#L223
我的问题: 你能帮我用一个自定义函数将 px 部分添加到 $hwstring 中吗(函数在这里:http://core.trac.wordpress.org/browser/trunk/wp-includes/media.php#L98)
提前感谢您的每一个提示。
【问题讨论】:
-
为什么不使用过滤器“get_image_tag”并调整其中的尺寸? $html = apply_filters('get_image_tag', $html, $id, $alt, $title, $align, $size);
-
感谢您的输入。我目前正在尝试使用试错法来做到这一点:-/ pastebin.com/21SBphXf
标签: wordpress internet-explorer-8