admin_post_<action>
Fires on an authenticated admin post request for the given action.
Description
do_action( 'admin_post_<action>' );
The dynamic portion(s) of the hook name refer to the given request action.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'admin_post_{$action}' );
- The following example is for adding a hook callback.
- // define the admin_post_<action> callback
- function action_admin_post_action( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( "admin_post_{$action}", 'action_admin_post_action', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( "admin_post_{$action}", 'action_admin_post_action', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /wp-admin/admin-post.php
- do_action( "admin_post_{$action}" );