admin_post_nopriv_<action>
Fires on a non-authenticated admin post request for the given action.
Description
do_action( 'admin_post_nopriv_<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_nopriv_{$action}' );
- The following example is for adding a hook callback.
- // define the admin_post_nopriv_<action> callback
- function action_admin_post_nopriv_action( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( "admin_post_nopriv_{$action}", 'action_admin_post_nopriv_action', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( "admin_post_nopriv_{$action}", 'action_admin_post_nopriv_action', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /wp-admin/admin-post.php
- do_action( "admin_post_nopriv_{$action}" );