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



wp_password_change_notification_email › WordPress Filter Hooks

Seit4.9.0
Veraltetn/v
apply_filters( 'wp_password_change_notification_email', $wp_password_change_notification_email, $user, $blogname )
Parameter: (3)
  • (array) $wp_password_change_notification_email { Used to build wp_mail(). @type string $to The intended recipient - site admin 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
  • (WP_User) $user User object for user whose password was changed.
    Erforderlich: Ja
  • (string) $blogname The site title.
    Erforderlich: Ja
Definiert in:
Codex:

Filters the contents of the password change notification email sent to the site admin.





Quellcode

$wp_password_change_notification_email = apply_filters( 'wp_password_change_notification_email', $wp_password_change_notification_email, $user, $blogname );