This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

_wp_kses_split_callback( $match )

Callback for wp_kses_split.


Return

(string)


Source

File: wp-includes/kses.php

function _wp_kses_split_callback( $match ) {
	global $pass_allowed_html, $pass_allowed_protocols;
	return wp_kses_split2( $match[0], $pass_allowed_html, $pass_allowed_protocols );
}


Changelog

Changelog
Version Description
WP-3.1.0 Introduced.