wp_kses_split

函数


wp_kses_split ( $string, $allowed_html, $allowed_protocols )
参数
  • (string)
    $string
    Content to filter.
    Required:
  • (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:
  • (string[])
    $allowed_protocols
    Array of allowed URL protocols.
    Required:
返回值
  • (string) Content with fixed HTML tags
定义位置
  • wp-includes/kses.php
    , line 976
引入
1.0.0
弃用

Searches for HTML tags, no matter how malformed.

It also matches stray `>` characters.

function wp_kses_split( $string, $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', $string );
}