| @@ -187,8 +187,10 @@ | ||
| 187 | 187 | $content = \wptexturize( $content ); |
| 188 | 188 | $content = \wp_filter_content_tags( $content ); |
| 189 | 189 | } |
| 190 | 190 | |
| 191 | + // Replace script and style elements. | |
| 192 | + $content = \preg_replace( '@<(script|style)[^>]*?>.*?</\\1>@si', '', $content ); | |
| 191 | 193 | $content = \strip_shortcodes( $content ); |
| 192 | 194 | $content = Sanitize::clean_html( $content ); |
| 193 | 195 | $content = Sanitize::strip_whitespace( $content ); |
| 194 | 196 | |