WordPress图像从URL中删除宽度参数并删除高度宽度标签


Wordpress image remove width parameter from url and remove height width tags

我已经将一些图像上传到wordpress,滑块中的图像仅带有550px。而我图像的原始宽度是 1024px

所以wordpress使url像这样:

 <img class="amazingslider-img-elem-3" data-originalwidth="550" data-originalheight="217" style="position:absolute;max-width:100%;width:100%;height:auto;left:0%;top:0%;margin-top:0.09728867623604587%;" src="http://i0.wp.com/uwf.org.in/jibaint/wp-content/uploads/2016/01/slider1.jpg?w=550">

所以我想删除 URL 中这个突出显示的标签和参数。

这个问题

在Wordpress Stack Exchange上得到了很好的回答。您可以在此处阅读更多内容:https://wordpress.stackexchange.com/questions/29881/stop-wordpress-from-hardcoding-img-width-and-height-attributes

主要有两种方法。首先是,当您检索图像时,而不是使用get_the_post_thumbnail获取附件 ID,然后您可以获取源并自己更改标记

第二个可能是您的解决方案 - 这是一个更改,通过替换/覆盖image_downsize功能来覆盖 Wordpress 使用的默认图像标记。

这两种方法在我上面提到的链接中都得到了很好的解释