enqueue_embed_scripts() WordPress Function
The enqueue_embed_scripts() function is used to enqueue the required scripts for the WP Embed feature. This function should be called from the wp_enqueue_scripts action.
enqueue_embed_scripts() #
Enqueues embed iframe default CSS and JS.
Description
Enqueue PNG fallback CSS for embed iframe for legacy versions of IE.
Allows plugins to queue scripts for the embed iframe end using wp_enqueue_script(). Runs first in oembed_head().
Source
File: wp-includes/embed.php
function enqueue_embed_scripts() { wp_enqueue_style( 'wp-embed-template-ie' ); /** * Fires when scripts and styles are enqueued for the embed iframe. * * @since 4.4.0 */ do_action( 'enqueue_embed_scripts' ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.4.0 | Introduced. |