Definition:
function wp_kses_js_entities($string) {}
Removes the HTML JavaScript entities found in early versions of Netscape 4.
Parameters
- string $string
Source code
function wp_kses_js_entities($string) { return preg_replace('%&\s*\{[^}]*(\}\s*;?|$)%', '', $string); }
3833
No comments yet... Be the first to leave a reply!