wp_kses_post_deep

Advertisement

Summery Summery

Navigates through an array, object, or scalar, and sanitizes content for allowed HTML tags for post content.

Syntax Syntax

wp_kses_post_deep( mixed $data )

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

Changelog
Version Description
4.4.2 Introduced.

See also See also

Advertisement

Leave a Reply