admin_action_<action>
Fires when an 'action' request variable is sent.
Description
do_action( 'admin_action_<action>' );
The dynamic portion(s) of the hook name refer refers to the action derived from the GET or POST request.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'admin_action_{$action}' );
- The following example is for adding a hook callback.
- // define the admin_action_<action> callback
- function action_admin_action_action( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( "admin_action_{$action}", 'action_admin_action_action', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( "admin_action_{$action}", 'action_admin_action_action', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /wp-admin/admin.php
- do_action( 'admin_action_' . $_REQUEST['action'] );