Switch language

wpseek.com
A WordPress-centric search engine for devs and theme authors




wp_kses_named_entities [ WordPress Function ]

wp_kses_named_entities ( $matches )
Parameters:
  • (array) $matches preg_replace_callback() matches array
Returns:
  • (string) Correctly encoded entity
Defined at:



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


<?php
function wp_kses_named_entities($matches) {
    global 
$allowedentitynames;

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

    
$i $matches[1];
    return ( ( ! 
in_array($i$allowedentitynames) ) ? "&amp;$i;" "&$i;" );
}
?>

Examples [ wp-snippets.com ]

Top Google zoekresultaten

Meer ...

Gebruikersdiscussies [ wordpress.org ]

0 User Note(s)

Nog geen één. Wees de eerste!

Nieuw toevoegen ...



HTML5 Powered with CSS3 / Styling, Performance & Integration, and Semantics