/**
*WordPress 移除文章图片的宽高属性
*https://www.weixiaoduo.com/remove-width-height/
*/
functionBing_remove_width_height($content){
returnpreg_replace('/(height|width)="d*"s/','',$content);
}
add_filter('get_image_tag','Bing_remove_width_height');
add_filter('post_thumbnail_html','Bing_remove_width_height');
add_filter('image_send_to_editor','Bing_remove_width_height');