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



site_admin_email_change_email › WordPress Filter Hooks

Seit4.9.0
Veraltetn/v
apply_filters( 'site_admin_email_change_email', $email_change_email, $old_email, $new_email )
Parameter: (3)
  • () email_change_email { Used to build wp_mail(). @type string $to The intended recipient. @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: - `###OLD_EMAIL###` The old site admin email address. - `###NEW_EMAIL###` The new site admin email address. - `###SITENAME###` The name of the site. - `###SITEURL###` The URL to the site. @type string $headers Headers. }
    Erforderlich: Ja
  • () old_email The old site admin email address.
    Erforderlich: Ja
  • () new_email The new site admin email address.
    Erforderlich: Ja
Definiert in:
Codex:

Filters the contents of the email notification sent when the site admin email address is changed.





Quellcode

$email_change_email = apply_filters( 'site_admin_email_change_email', $email_change_email, $old_email, $new_email );