wp_kses_named_entities( array $matches )

Callback for wp_kses_normalize_entities() regular expression.


Description Description

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


Parameters Parameters

$matches

(array) (Required) preg_replace_callback() matches array.


Top ↑

Return Return

(string) Correctly encoded entity.


Top ↑

Source Source

File: wp-includes/kses.php

function wp_kses_named_entities( $matches ) {
	global $allowedentitynames;

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

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

Top ↑

Changelog Changelog

Changelog
Version Description
3.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.