wp_kses_named_entities

函数


wp_kses_named_entities ( $matches )
参数
  • (array)
    $matches
    preg_replace_callback() matches array.
    Required:
返回值
  • (string) Correctly encoded entity.
定义位置
  • wp-includes/kses.php
    , line 1898
引入
3.0.0
弃用

Callback for `wp_kses_normalize_entities()` regular expression.

This function only accepts valid named entity references, which are finite,
case-sensitive, and highly scrutinized by HTML and XML validators.

function wp_kses_named_entities( $matches ) {
	global $allowedentitynames;

	if ( empty( $matches[1] ) ) {
		return '';
	}

	$i = $matches[1];
	return ( ! in_array( $i, $allowedentitynames, true ) ) ? "&$i;" : "&$i;";
}