如果尚未打印,则打印内联表情符号检测脚本。
原型
print_emoji_detection_script()
源文件
路径:wp-includes/formatting.php
<?php
...
function print_emoji_detection_script() {
static $printed = false;
if ( $printed ) {
return;
}
$printed = true;
_print_emoji_detection_script();
}
...
?>
其他
英文文档:https://developer.wordpress.org/reference/functions/print_emoji_detection_script/