print_emoji_detection_script()WP 4.2.0

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

No Hooks.

Return

null. Nothing (null).

Usage

print_emoji_detection_script();

Changelog

Since 4.2.0 Introduced.

print_emoji_detection_script() code WP 6.5.2

function print_emoji_detection_script() {
	static $printed = false;

	if ( $printed ) {
		return;
	}

	$printed = true;

	_print_emoji_detection_script();
}