WordPress文章插入的图片如何删除宽度和高度属性

追格官方小助手/ 2022年07月26日/ WordPress/ 浏览 1003

WordPress文章插入的图片如何删除宽度和高度属性,追格小程序交流群里的需求总是这么个性化。


在当前使用的WordPress模板functions.php中添加以下代码即可:


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;
}


发表评论

暂无评论,抢个沙发...

客服 工单