admin_post_nopriv
Fires on a non-authenticated admin post request where no action was supplied.
Description
do_action( 'admin_post_nopriv' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'admin_post_nopriv' );
- The following example is for adding a hook callback.
- // define the admin_post_nopriv callback
- function action_admin_post_nopriv( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'admin_post_nopriv', 'action_admin_post_nopriv', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'admin_post_nopriv', 'action_admin_post_nopriv', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /wp-admin/admin-post.php
- do_action( 'admin_post_nopriv' );