函数原型
print_embed_scripts()
函数描述
Prints the JavaScript in the embed iframe header.
是否弃用
未弃用
函数参数
无
函数返回值
无
函数位置
File: wp-includes/embed.php.
函数源码
function print_embed_scripts() {
wp_print_inline_script_tag(
file_get_contents( ABSPATH . WPINC . '/js/wp-embed-template' . wp_scripts_get_suffix() . '.js' )
);
}
源码链接
变更日志
| Version | Description |
|---|---|
| 4.4.0 | Introduced. |

