Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: user_request_action_confirmed

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1193            * clicking on the link in the confirmation email.
1194            *
1195            * After firing this action hook the page will redirect to wp-login a callback
1196            * redirects or exits first.
1197            *
1198            * @since 4.9.6
1199            *
1200            * @param int $request_id Request ID.
1201            */
1202           do_action( 'user_request_action_confirmed', $request_id );
1203
1204           $message = _wp_privacy_account_request_confirmed_message( $request_id );
1205
1206           login_header( __( 'User action confirmed.' ), $message );
1207           login_footer();
1208           exit;
1209
1210      case 'login':
1211      default: