我已将少量图片上传到 wordpress ,滑块中的图片仅包含 550px 。 我的原始图像宽度为 1024px 。
所以wordpress正在制作这样的网址:
<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">
所以我想在网址中删除这个高亮的标签和参数。
答案 0 :(得分:0)
这个问题在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使用的默认图像标记。
我在上面提到的链接上很好地解释了这两种方法