wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



retrieve_password_notification_email › WordPress Filter Hooks

Seit6.0.0
Veraltetn/v
apply_filters( 'retrieve_password_notification_email', $defaults, $key, $user_login, $user_data )
Parameter: (4)
  • (array) $defaults { The default notification email arguments. Used to build wp_mail(). @type string $to The intended recipient - user email address. @type string $subject The subject of the email. @type string $message The body of the email. @type string $headers The headers of the email. }
    Erforderlich: Ja
  • (string) $key The activation key.
    Erforderlich: Ja
  • (string) $user_login The username for the user.
    Erforderlich: Ja
  • (WP_User) $user_data WP_User object.
    Erforderlich: Ja
Definiert in:
Codex:

Filters the contents of the reset password notification email sent to the user.





Quellcode

$notification_email = apply_filters( 'retrieve_password_notification_email', $defaults, $key, $user_login, $user_data );