user_request_action_confirmed WordPress Action Hook

This hook is called when a user has confirmed an action request. It is useful for making sure that the user is actually taking the action they said they would.

do_action( 'user_request_action_confirmed', int $request_id ) #

Fires an action hook when the account action has been confirmed by the user.


Description

Using this you can assume the user has agreed to perform the action by clicking on the link in the confirmation email.

After firing this action hook the page will redirect to wp-login a callback redirects or exits first.


Top ↑

Parameters

$request_id

(int)Request ID.


Top ↑

Source

File: wp-login.php

View on Trac


Top ↑

Changelog

Changelog
VersionDescription
4.9.6Introduced.

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.