Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: site_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
5848       *                - ###OLD_EMAIL### The old site admin email address.
5849       *                - ###NEW_EMAIL### The new site admin email address.
5850       *                - ###SITENAME###  The name of the site.
5851       *                - ###SITEURL###   The URL to the site.
5852       *            @type string $headers Headers.
5853       *        }
5854       * @param string $old_email The old site admin email address.
5855       * @param string $new_email The new site admin email address.
5856       */
5857      $email_change_email = apply_filters( 'site_admin_email_change_email', $email_change_email, $old_email, $new_email );
5858
5859      $email_change_email['message'] = str_replace( '###OLD_EMAIL###', $old_email, $email_change_email['message'] );
5860      $email_change_email['message'] = str_replace( '###NEW_EMAIL###', $new_email, $email_change_email['message'] );
5861      $email_change_email['message'] = str_replace( '###SITENAME###',  $site_name, $email_change_email['message'] );
5862      $email_change_email['message'] = str_replace( '###SITEURL###',   home_url(), $email_change_email['message'] );
5863
5864      wp_mail( $email_change_email['to'], sprintf(
5865           $email_change_email['subject'],
5866           $site_name