如果我们在Wordpress编辑文章中插入图片的时候,根据默认设置会有图片宽度和高度的限制尺寸,这个是根据浏览器进行调节的。但是如果我们需要取消这个功能如何设置呢?


add_filter( 'post_thumbnail_html', 'remove_width_attribute', 10 );
add_filter( 'image_send_to_editor', 'remove_width_attribute', 10 );
function remove_width_attribute( $html ) {<br> $html = preg_replace( '/(width|height)="\d*"\s/', "", $html );<br> return $html;
}

在当前主题Functions.php文件中添加就可以。


扫描二维码,在手机上阅读!