取消WordPress插入图片限制宽度和高度设置
如果我们在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教程、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!