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 ]

Google Arama Sonuçlarý

Dahasý ...

Kullanýcý Tartýþmalarý [ wordpress.org ]

- Bulunamadý -

Yeni bir konu yaz ...

0 User Note(s)

Henüz yok. Ýlk sen ol!

Yeni Ekle ...



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