wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_kses_split › WordPress Function

Since1.0.0
Deprecatedn/a
wp_kses_split ( $content, $allowed_html, $allowed_protocols )
Parameters: (3)
  • (string) $content Content to filter.
    Required: Yes
  • (array[]|string) $allowed_html An array of allowed HTML elements and attributes, or a context name such as 'post'. See wp_kses_allowed_html() for the list of accepted context names.
    Required: Yes
  • (string[]) $allowed_protocols Array of allowed URL protocols.
    Required: Yes
Returns:
  • (string) Content with fixed HTML tags
Defined at:
Codex:

Searches for HTML tags, no matter how malformed.

It also matches stray > characters.


Source

function wp_kses_split( $content, $allowed_html, $allowed_protocols ) {
	global $pass_allowed_html, $pass_allowed_protocols;

	$pass_allowed_html      = $allowed_html;
	$pass_allowed_protocols = $allowed_protocols;

	return preg_replace_callback( '%(<!--.*?(-->|$))|(<[^>]*(>|$)|>)%', '_wp_kses_split_callback', $content );
}