WordPress教程如何自动删除文章中图片宽高样式

2024年05月28日 建站教程

WordPress建站中,如何自动删除文章中图片宽高样式?下面web建站小编给大家简单介绍一下!

找到当前主题下面的functions.php文件,新增以下代码:

add_filter( 'post_thumbnail_html', 'remove_width_attribute', 10 );
add_filter( 'image_send_to_editor', 'remove_width_attribute', 10 );

function remove_width_attribute( $html ) {
   $html = preg_replace( '/(width|height)="\d*"\s/', "", $html );
   return $html;
}

本文链接:http://so.lmcjl.com/news/5493/

展开阅读全文
相关内容