wp_kses_named_entities()WP 3.0.0

Callback for wp_kses_normalize_entities() expression.

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

Хуков нет.

Возвращает

Строку. Correctly encoded entity.

Использование

wp_kses_named_entities( $matches );
$matches(массив) (обязательный)
preg_replace_callback() matches array.

Заметки

  • Global. Массив. $allowedentitynames

Список изменений

С версии 3.0.0 Введена.

Код wp_kses_named_entities() WP 6.5.2

function wp_kses_named_entities( $matches ) {
	global $allowedentitynames;

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

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