granted_super_admin WordPress Action Hook
This hook is called when a user is granted super admin privileges. It allows for custom code to be executed when a user is given this role. This could be used, for example, to send a notification to the user or to log the event.
do_action( 'granted_super_admin', int $user_id ) #
Fires after the user is granted Super Admin privileges.
Parameters
- $user_id
(int)ID of the user that was granted Super Admin privileges.
Source
Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |