wp_kses_xml_named_entities() WP 5.5.0
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 XML validators. HTML named entity references are converted to their code points.
Хуков нет.
Возвращает
Строку
. Correctly encoded entity.
Использование
wp_kses_xml_named_entities( $matches );
- $matches(массив) (обязательный)
- preg_replace_callback() matches array.
Заметки
- Global. Массив. $allowedentitynames
- Global. Массив. $allowedxmlnamedentities
Список изменений
С версии 5.5.0 | Введена. |
Код wp_kses_xml_named_entities() wp kses xml named entities WP 5.7
function wp_kses_xml_named_entities( $matches ) {
global $allowedentitynames, $allowedxmlnamedentities;
if ( empty( $matches[1] ) ) {
return '';
}
$i = $matches[1];
if ( in_array( $i, $allowedxmlnamedentities, true ) ) {
return "&$i;";
} elseif ( in_array( $i, $allowedentitynames, true ) ) {
return html_entity_decode( "&$i;", ENT_HTML5 );
}
return "&$i;";
}