A good[ish] website
Web development blog, loads of UI and JavaScript topics
Just a quick snippet. May come handy on responsive layouts.
add_filter( 'post_thumbnail_html', 'remove_thumbnail_dimensions', 10 );
add_filter( 'image_send_to_editor', 'remove_thumbnail_dimensions', 10 );
function remove_thumbnail_dimensions( $html ) {
$html = preg_replace( '/(width|height)=\"\d*\"\s/', "", $html );
return $html;
}
Comments would go here, but the commenting system isn’t ready yet, sorry.