Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: user_erasure_fulfillment_email_to

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
3040
3041      /**
3042       * Filters the recipient of the data erasure fulfillment notification.
3043       *
3044       * @since 4.9.6
3045       *
3046       * @param string          $user_email   The email address of the notification recipient.
3047       * @param WP_User_Request $request_data The request that is initiating the notification.
3048       */
3049      $user_email = apply_filters( 'user_erasure_fulfillment_email_to', $request_data->email, $request_data );
3050
3051      $email_data = array(
3052           'request'            => $request_data,
3053           'message_recipient'  => $user_email,
3054           'privacy_policy_url' => get_privacy_policy_url(),
3055           'sitename'           => wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES ),
3056           'siteurl'            => home_url(),
3057      );
3058