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



print_embed_scripts › WordPress Function

Since4.4.0
Deprecatedn/a
print_embed_scripts ( No parameters )
Defined at:
Codex:

Prints the JavaScript in the embed iframe header.



Source

function print_embed_scripts() {
	$js_path = '/js/wp-embed-template' . wp_scripts_get_suffix() . '.js';
	wp_print_inline_script_tag(
		trim( file_get_contents( ABSPATH . WPINC . $js_path ) ) . "\n//# sourceURL=" . esc_url_raw( includes_url( $js_path ) )
	);
}