WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
This hook occurs 2 times in this file.
Line | Code |
---|---|
3653 | * @type WP_User_Request $request User request object. |
3654 | * @type string $user_email The email address confirming a request |
3655 | * @type string $description Description of the action being performed so the user knows what the email is for. |
3656 | * @type string $manage_url The link to click manage privacy requests of this type. |
3657 | * @type string $sitename The site name sending the mail. |
3658 | * @type string $siteurl The site URL sending the mail. |
3659 | * @type string $admin_email The administrator email receiving the mail. |
3660 | * } |
3661 | */ |
3662 | $content = apply_filters( 'user_confirmed_action_email_content', $email_text, $email_data ); |
3663 |
|
3664 | $content = str_replace( '###SITENAME###', $email_data['sitename'], $content ); |
3665 | $content = str_replace( '###USER_EMAIL###', $email_data['user_email'], $content ); |
3666 | $content = str_replace( '###DESCRIPTION###', $email_data['description'], $content ); |
3667 | $content = str_replace( '###MANAGE_URL###', esc_url_raw( $email_data['manage_url'] ), $content ); |
3668 | $content = str_replace( '###SITEURL###', esc_url_raw( $email_data['siteurl'] ), $content ); |
3669 |
|
3670 | $subject = sprintf( |
3671 | /* translators: Privacy data request confirmed notification email subject. 1: Site title, 2: Name of the confirmed action. */ |
Line | Code |
3854 | * @type WP_User_Request $request User request object. |
3855 | * @type string $message_recipient The address that the email will be sent to. Defaults |
3856 | * to the value of `$request->email`, but can be changed |
3857 | * by the `user_erasure_fulfillment_email_to` filter. |
3858 | * @type string $privacy_policy_url Privacy policy URL. |
3859 | * @type string $sitename The site name sending the mail. |
3860 | * @type string $siteurl The site URL sending the mail. |
3861 | * } |
3862 | */ |
3863 | $content = apply_filters( 'user_confirmed_action_email_content', $email_text, $email_data ); |
3864 |
|
3865 | $content = str_replace( '###SITENAME###', $email_data['sitename'], $content ); |
3866 | $content = str_replace( '###PRIVACY_POLICY_URL###', $email_data['privacy_policy_url'], $content ); |
3867 | $content = str_replace( '###SITEURL###', esc_url_raw( $email_data['siteurl'] ), $content ); |
3868 |
|
3869 | $headers = ''; |
3870 |
|
3871 | /** |
3872 | * Filters the headers of the data erasure fulfillment notification. |