print_embed_scripts()WP 4.4.0

Prints the JavaScript in the embed iframe header.

Хуков нет.

Возвращает

null. Ничего (null).

Использование

print_embed_scripts();

Список изменений

С версии 4.4.0 Введена.

Код print_embed_scripts() WP 6.5.2

function print_embed_scripts() {
	wp_print_inline_script_tag(
		file_get_contents( ABSPATH . WPINC . '/js/wp-embed-template' . wp_scripts_get_suffix() . '.js' )
	);
}