print_emoji_detection_script()
Print the inline Emoji detection script if it is not already printed.
Description Description
Source Source
File: wp-includes/formatting.php
function print_emoji_detection_script() { static $printed = false; if ( $printed ) { return; } $printed = true; _print_emoji_detection_script(); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
4.2.0 | Introduced. |