wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



password_change_email › Les Filtres WordPress

Depuis4.3.0
Dépréciéen/a
apply_filters( 'password_change_email', $pass_change_email, $user, $userdata )
Paramètres: (3)
  • (array) $pass_change_email { Used to build wp_mail(). @type string $to The intended recipients. Add emails in a comma separated string. @type string $subject The subject of the email. @type string $message The content of the email. The following strings have a special meaning and will get replaced dynamically: - ###USERNAME### The current user's username. - ###ADMIN_EMAIL### The admin email in case this was unexpected. - ###EMAIL### The user's email address. - ###SITENAME### The name of the site. - ###SITEURL### The URL to the site. @type string $headers Headers. Add headers in a newline (\r\n) separated string. }
    Requis: Oui
  • (array) $user The original user array.
    Requis: Oui
  • (array) $userdata The updated user array.
    Requis: Oui
Défini(e) dans:
Codex:

Filters the contents of the email sent when the user's password is changed.





Source

$pass_change_email = apply_filters( 'password_change_email', $pass_change_email, $user, $userdata );