我正在使用此代码:
...
echo '<a href="' . get_permalink($recent["ID"]) . '">'. wp_get_attachment_image( $thumb_id, array(60, 60)). '</a>';
...
对于某些图像,我输出正确:
<img width="60" height="60" src="..." class="attachment-60x60 size-60x60" alt="..." srcset="..." sizes="(max-width: 60px) 100vw, 60px">
但对某些人来说这很糟糕:
<img width="1" height="1" src="..." class="attachment-60x60 size-60x60" alt="...">
我的错误在哪里?
答案 0 :(得分:0)
我也遇到了同样的问题,结果发现它是podPress插件中的错误,因此,如果您已安装该插件,请尝试将其禁用,看看是否可以解决。