wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



print_emoji_detection_script › WordPress Function

Desde4.2.0
Obsoleton/a
print_emoji_detection_script ( Sem parâmetros )
Definido em:
Codex:

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



Fonte

function print_emoji_detection_script() {
	static $printed = false;

	if ( $printed ) {
		return;
	}

	$printed = true;

	_print_emoji_detection_script();
}