Google help on software/programming And Windows Tricks: May 2015

helponsoftware

Tuesday 26 May 2015

Remove inline style in attachments

add_filter('wp_get_attachment_link', 'remove_img_width_height', 10, 1);

function remove_img_width_height($html) {
    $html = preg_replace( '/(width|height)=\"\d*\"\s/', "", $html );
    return $html;
}