wp_kses_js_entities()
Deprecated since 4.7.0 Officially dropped security support for Netscape 4.. It is no longer supported and may be removed in future releases. It is recommended to replace this function with the same one.
Removes the HTML JavaScript entities found in early versions of Netscape 4.
Previously, this function was pulled in from the original import of kses and removed a specific vulnerability only existent in early version of Netscape 4. However, this vulnerability never affected any other browsers and can be considered safe for the modern web.
The regular expression which sanitized this vulnerability has been removed in consideration of the performance and energy demands it placed, now merely passing through its input to the return.
No Hooks.
Returns
String.
Usage
wp_kses_js_entities( $content );
- $content(string) (required)
- .
Changelog
| Since 1.0.0 | Introduced. |
| Deprecated since 4.7.0 | Officially dropped security support for Netscape 4. |
wp_kses_js_entities() wp kses js entities code WP 6.9.1
function wp_kses_js_entities( $content ) {
_deprecated_function( __FUNCTION__, '4.7.0' );
return preg_replace( '%&\s*\{[^}]*(\}\s*;?|$)%', '', $content );
}