Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: network_admin_email_change_email

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
2960       *         - ###NEW_EMAIL### The new network admin email address.
2961       *         - ###SITENAME###  The name of the network.
2962       *         - ###SITEURL###   The URL to the site.
2963       *     @type string $headers Headers.
2964       * }
2965       * @param string $old_email  The old network admin email address.
2966       * @param string $new_email  The new network admin email address.
2967       * @param int    $network_id ID of the network.
2968       */
2969      $email_change_email = apply_filters( 'network_admin_email_change_email', $email_change_email, $old_email, $new_email, $network_id );
2970
2971      $email_change_email['message'] = str_replace( '###OLD_EMAIL###', $old_email, $email_change_email['message'] );
2972      $email_change_email['message'] = str_replace( '###NEW_EMAIL###', $new_email, $email_change_email['message'] );
2973      $email_change_email['message'] = str_replace( '###SITENAME###', $network_name, $email_change_email['message'] );
2974      $email_change_email['message'] = str_replace( '###SITEURL###', home_url(), $email_change_email['message'] );
2975
2976      wp_mail(
2977           $email_change_email['to'],
2978           sprintf(