user_request_action_confirmed_message WordPress Action Hook
The user_request_action_confirmed_message hook is used to send a message to a user after their request for an action has been confirmed. This hook is useful for sending confirmation messages or instructions after a user has requested an action, such as registering for a newsletter or completing a survey.
apply_filters( 'user_request_action_confirmed_message', string $message , int $request_id ) #
Filters the message displayed to a user when they confirm a data request.
Parameters
- $message
(string)The message to the user.
- $request_id
(int)The ID of the request being confirmed.
Source
File: wp-includes/user.php
Changelog
Version | Description |
---|---|
4.9.6 | Introduced. |