admin_post_nopriv_{$action} WordPress Action Hook
The admin_post_nopriv_{$action} hook is triggered when a user who is not logged in attempts to access the WordPress admin area.
do_action( "admin_post_nopriv_{$action}" ) #
Fires on a non-authenticated admin post request for the given action.
Contents
Description
The dynamic portion of the hook name, $action
, refers to the given request action.
Source
File: wp-admin/admin-post.php
Changelog
Version | Description |
---|---|
2.6.0 | Introduced. |