admin_color_scheme_picker
Fires in the 'Admin Color Scheme' section of the user editing screen.
Description
The section is only enabled if a callback is hooked to the action, and if there is more than one defined color scheme for the admin.
Parameters (1)
- 0. $user_id (int)
- The user id.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'admin_color_scheme_picker', $user_id );
- The following example is for adding a hook callback.
- // define the admin_color_scheme_picker callback
- function action_admin_color_scheme_picker( $user_id ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'admin_color_scheme_picker', 'action_admin_color_scheme_picker', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'admin_color_scheme_picker', 'action_admin_color_scheme_picker', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-admin/user-edit.php
- do_action( 'admin_color_scheme_picker', $user_id );