函数原型
print_emoji_detection_script()
函数描述
Prints the inline Emoji detection script if it is not already printed.
是否弃用
未弃用
函数参数
无
函数返回值
无
函数位置
File: wp-includes/formatting.php.
函数源码
function print_emoji_detection_script() {
static $printed = false;
if ( $printed ) {
return;
}
$printed = true;
_print_emoji_detection_script();
}
源码链接
变更日志
| Version | Description |
|---|---|
| 4.2.0 | Introduced. |

