admin_head
Fires in head section for all admin pages.
Description
do_action( 'admin_head' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'admin_head' );
- The following example is for adding a hook callback.
- // define the admin_head callback
- function action_admin_head( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'admin_head', 'action_admin_head', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'admin_head', 'action_admin_head', 10, 0 );
Defined (4)
The action is defined in the following location(s).
- /wp-admin/includes/template.php
- do_action( 'admin_head' );
- /wp-admin/includes/media.php
- do_action( 'admin_head' );
- /wp-admin/includes/class-wp-press-this.php
- do_action( 'admin_head' );
- /wp-admin/admin-header.php
- do_action( 'admin_head' );