取消WordPress插入图片限制宽度和高度设置

如果我们在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 ) {
$html = preg_replace( '/(width|height)="\d*"\s/', "", $html );
return $html;
}

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

投上你的一票

本文出处:老蒋部落 » 取消WordPress插入图片限制宽度和高度设置 | 欢迎分享( 公众号:老蒋朋友圈 )

公众号 「老蒋朋友圈」获取站长新知 / 加QQ群 【1012423279】获取商家优惠推送