wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



print_emoji_detection_script › WordPress Function

Seit4.2.0
Veraltetn/v
print_emoji_detection_script ( Keine Parameter )
Definiert in:
Codex:

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



Quellcode

function print_emoji_detection_script() {
	static $printed = false;

	if ( $printed ) {
		return;
	}

	$printed = true;

	_print_emoji_detection_script();
}