wp_kses_decode_entities

Definition:
function wp_kses_decode_entities($string) {}

Convert all entities to their character counterparts.
This function decodes numeric HTML entities (A and A). It doesn’t do anything with other entities like ä, but we don’t need them in the URL protocol whitelisting system anyway.

Parameters

  • string $string: Content to change entities

Return values

returns:Content after decoded entities

Source code

function wp_kses_decode_entities($string) {

	$string = preg_replace_callback('/&#([0-9]+);/', '_wp_kses_decode_entities_chr', $string);

	$string = preg_replace_callback('/&#[Xx]([0-9A-Fa-f]+);/', '_wp_kses_decode_entities_chr_hexdec', $string);



	return $string;

}

3825

No comments yet... Be the first to leave a reply!

Leave a comment