print_emoji_detection_script()

最后更新于:2021-11-27 20:34:40

print_emoji_detection_script()

Print the inline Emoji detection script if it is not already printed.

源文件

文件: gc-includes/formatting.php

function print_emoji_detection_script() {
	static $printed = false;

	if ( $printed ) {
		return;
	}

	$printed = true;

	_print_emoji_detection_script();
}