print_emoji_detection_script() WP 4.2.0
Print the inline Emoji detection script if it is not already printed.
Хуков нет.
Возвращает
Null. Ничего.
Использование
print_emoji_detection_script();
Список изменений
С версии 4.2.0 | Введена. |
Код print_emoji_detection_script() print emoji detection script WP 5.6.2
function print_emoji_detection_script() {
static $printed = false;
if ( $printed ) {
return;
}
$printed = true;
_print_emoji_detection_script();
}