admin_email_confirm WordPress Action Hook

The admin_email_confirm hook is triggered when an administrator clicks on the "Confirm Email" link in the email confirmation message. This hook can be used to perform custom actions when an administrator confirms their email address. For example, you could use this hook to send a welcome message or update the user's account status.

do_action( 'admin_email_confirm', WP_Error $errors ) #

Fires before the admin email confirm form.


Parameters

$errors

(WP_Error)A WP_Error object containing any errors generated by using invalid credentials. Note that the error object may not contain any errors.


Top ↑

Source

File: wp-login.php

View on Trac


Top ↑

Changelog

Changelog
VersionDescription
5.3.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.