```php
add_filter('the_content', function($content) {
return preg_replace('/style="[^"]*"/i', '', $content);
});