wp_enqueue_media
Fires at the conclusion of wp_enqueue_media().
Description
Parameters (1)
- 0. $array (callback) =>
array( $this, 'wp_enqueue_media' )
- The array.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'wp_enqueue_media', $array );
- The following example is for adding a hook callback.
- // define the wp_enqueue_media callback
- function action_wp_enqueue_media( $array ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'wp_enqueue_media', 'action_wp_enqueue_media', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'wp_enqueue_media', 'action_wp_enqueue_media', 10, 1 );
Defined (3)
The action is defined in the following location(s).
- /functions.gallery.php
- add_action( 'wp_enqueue_media', array( $this, 'wp_enqueue_media' ) );
- /modules/videopress/class.jetpack-videopress.php
- add_action( 'wp_enqueue_media', array( $this, 'enqueue_admin_scripts' ) );
- /modules/videopress/editor-media-view.php
- add_action( 'wp_enqueue_media', 'add_videopress_media_overrides' );