WordPress renders thumbnails with these attributes:
<img width="100" height="200" ...
IE78 requires is this:
<img width="100px" height="200px" ...
(exact problem is here: WordPress featured images not showing up in IE8)
I digged into the core and found the code where the heightwidth is rendered:
http://core.trac.wordpress.org/browser/trunk/wp-includes/media.php#L223
my question:
Can you please help me with a custom function to add the px part into the $hwstring (function is here: http://core.trac.wordpress.org/browser/trunk/wp-includes/media.php#L98 )
thanks in advance for every tip.
Try this;
I’ve only quickly tested it out at my end.