wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



wp_kses_named_entities › WordPress Function

Depuis3.0.0
Dépréciéen/a
wp_kses_named_entities ( $matches )
Paramètres:
  • (array) $matches preg_replace_callback() matches array.
    Requis: Oui
Retourne:
  • (string) Correctly encoded entity.
Défini(e) dans:
Codex:

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.


Source

function wp_kses_named_entities( $matches ) {
	global $allowedentitynames;

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

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