wpseek.com
A WordPress-centric search engine for devs and theme authors



print_emoji_detection_script › WordPress Function

Since4.2.0
Deprecatedn/a
print_emoji_detection_script ( No parameters )
Defined at:
Codex:

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



Source

function print_emoji_detection_script(): void {
	static $printed = false;

	if ( $printed ) {
		return;
	}

	$printed = true;

	if ( is_admin() ) {
		if ( did_action( 'admin_print_footer_scripts' ) ) {
			_print_emoji_detection_script();
		} else {
			add_action( 'admin_print_footer_scripts', '_print_emoji_detection_script' );
		}
	} else {
		if ( did_action( 'wp_print_footer_scripts' ) ) {
			_print_emoji_detection_script();
		} else {
			add_action( 'wp_print_footer_scripts', '_print_emoji_detection_script' );
		}
	}
}