欢迎访问服务器技术网-www.fuwuqijishu.com

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

网站建设 fuwuqijishu 2年前 (2022-09-04) 38次浏览 0个评论 扫描二维码

如果我们在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文件中添加就可以。

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2202.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900