也想出现在这里?联系我们

WordPress移除图片的高度和宽度属性

2016.12.30 wordpress教程
  • 文章介绍
  • 升级版本
  • 评价&建议

定义主题样式的时候,有可能需要移除本身图片的宽度和高度属性来方便我们使用CSS定义。

将下面代码添加到主题的functions.php即可

  1. add_filter( 'post_thumbnail_html', 'remove_width_attribute', 10 );
  2. add_filter( 'image_send_to_editor', 'remove_width_attribute', 10 );
  3. function remove_width_attribute( $html ) {
  4.    $html = preg_replace( '/(width|height)="\d*"\s/', ""$html );
  5.    return $html;
  6. }
有用2
  • 2016.12.30初次和大家见面了!

等待您对该主题的建议

发表评论

还能输入240个字

Hi, 欢迎加入Wordpress技术交流群,带你装逼带你飞!

我要入群
也想出现在这里?联系我们
wordpress加速

我来推荐一个更牛逼的给你看看?

  • 猛戳我吧