WordPress:删除插入图像的宽度和高度属性

主机教程 wordpress教程评论69字数 324阅读1分4秒阅读模式

当您通过 WordPress 媒体上传器上传图像,然后将其插入编辑器时,默认会带有宽度和高度属性。如果您想删除默认的宽度和高度属性,将下面代码添加到您的functions.php文件即可。

WordPress文章源自国外主机测评-https://www.zjcp.org/7843.html

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;
}
文章源自国外主机测评-https://www.zjcp.org/7843.html文章源自国外主机测评-https://www.zjcp.org/7843.html
 
  • 本文由 主机测评 发表于 2022年10月25日22:11:00
  • 转载请务必保留本文链接:https://www.zjcp.org/7843.html

发表评论