oliwa
11/20/2016 - 12:14 PM

Wordpress: Remove Width and Height Attributes From Inserted Images

Wordpress: Remove Width and Height Attributes From Inserted Images

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

?>