wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



network_admin_email_change_email › Hooks de Filtros WordPress

Desde4.9.0
Obsoleton/a
apply_filters( 'network_admin_email_change_email', $email_change_email, $old_email, $new_email, $network_id )
Parâmetros: (4)
  • (array) $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 network admin email address. - ###NEW_EMAIL### The new network admin email address. - ###SITENAME### The name of the network. - ###SITEURL### The URL to the site. @type string $headers Headers. }
    Required: Yes
  • (string) $old_email The old network admin email address.
    Required: Yes
  • (string) $new_email The new network admin email address.
    Required: Yes
  • (int) $network_id ID of the network.
    Required: Yes
Definido em:
Codex:

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





Fonte

$email_change_email = apply_filters( 'network_admin_email_change_email', $email_change_email, $old_email, $new_email, $network_id );