Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save developer-anuragsingh/ef5966b2046a46678fdd2ccb3f94f334 to your computer and use it in GitHub Desktop.
Save developer-anuragsingh/ef5966b2046a46678fdd2ccb3f94f334 to your computer and use it in GitHub Desktop.
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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment