如何更改WordPress帖子中的图像属性

时间:2017-04-27 07:44:12

标签: php wordpress image src wordpress-hook

Wordpress帖子显示以下图像结果。

<img class="large alignnone size-full wp-image-8" src="http://localhost/blog/wp-content/uploads/2017/04/t-radio-city-music-hall.jpg" alt="" width="960" height="654" srcset="http://localhost/blog/wp-content/uploads/2017/04/t-radio-city-music-hall.jpg 960w, http://localhost/blog/wp-content/uploads/2017/04/t-radio-city-music-hall-300x204.jpg 300w, http://localhost/blog/wp-content/uploads/2017/04/t-radio-city-music-hall-768x523.jpg 768w" sizes="(max-width: 960px) 100vw, 960px">

如何更改这些输出?

  • 删除srcset
  • 将src替换为数据原始

最终结果应该具有以下属性:数据原始,类,宽度,高度。

需要WordPress查询。

请不要jQuery。

1 个答案:

答案 0 :(得分:0)

  

WordPress有一个内置的钩子来修改或改变图像HTML   wp_get_attachment_image_attributes

以下是代码:

.ts

代码进入您的活动子主题(或主题)的functions.php文件。或者也可以在任何插件php文件中。
代码已经过测试并且有效。

希望这有帮助!