Summery Summery
Navigates through an array, object, or scalar, and sanitizes content for allowed HTML tags for post content.
Syntax Syntax
Parameters Parameters
- $data
-
(Required) The array, object, or scalar value to inspect.
Return Return
(mixed) The filtered content.
Source Source
File: wp-includes/kses.php
*/ function _wp_kses_decode_entities_chr_hexdec( $match ) { return chr( hexdec( $match[1] ) );
Advertisement
Changelog Changelog
Version | Description |
---|---|
4.4.2 | Introduced. |