Navigates through an array, object, or scalar, and sanitizes content for allowed HTML tags for post content.
Description
See also
Parameters
$data
mixedrequired- The array, object, or scalar value to inspect.
Source
function wp_kses_post_deep( $data ) {
return map_deep( $data, 'wp_kses_post' );
}
Changelog
Version | Description |
---|---|
4.4.2 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.