admin_enqueue_scripts
Enqueue scripts for all admin pages.
Description
Parameters (1)
- 0. $widgets_php (string) =>
'widgets.php'
- The widgets php.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'admin_enqueue_scripts', $widgets_php );
- The following example is for adding a hook callback.
- // define the admin_enqueue_scripts callback
- function action_admin_enqueue_scripts( $widgets_php ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'admin_enqueue_scripts', 'action_admin_enqueue_scripts', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'admin_enqueue_scripts', 'action_admin_enqueue_scripts', 10, 1 );
Defined (5)
The action is defined in the following location(s).
- /wp-includes/class-wp-customize-widgets.php
- do_action( 'admin_enqueue_scripts', 'widgets.php' );
- /wp-admin/includes/template.php
- do_action( 'admin_enqueue_scripts', $hook_suffix );
- /wp-admin/includes/media.php
- do_action( 'admin_enqueue_scripts', 'media-upload-popup' );
- /wp-admin/includes/class-wp-press-this.php
- do_action( 'admin_enqueue_scripts', 'press-this.php' );
- /wp-admin/admin-header.php
- do_action( 'admin_enqueue_scripts', $hook_suffix );