使用外语预览JavaScript bug。
原型
_convert_urlencoded_to_entities( array $match )
参数
$match
(array)
(Required)
匹配来自preg_replace_callback的数组。
返回值
(string)
源文件
路径:wp-includes/post-template.php
<?php
...
function _convert_urlencoded_to_entities( $match ) {
return '&#' . base_convert( $match[1], 16, 10 ) . ';';
}
...
?>
其他
英文文档:https://developer.wordpress.org/reference/functions/_convert_urlencoded_to_entities/