Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: delete_site_email_content

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
57 Webmaster
58 ###SITE_NAME###" );
59      /**
60       * Filter the email content sent when a site in a Multisite network is deleted.
61       *
62       * @since 3.0.0
63       *
64       * @param string $content The email content that will be sent to the user who deleted a site in a Multisite network.
65       */
66      $content = apply_filters( 'delete_site_email_content', $content );
67
68      $content = str_replace( '###URL_DELETE###', $url_delete, $content );
69      $content = str_replace( '###SITE_NAME###', $current_site->site_name, $content );
70
71      wp_mail( get_option( 'admin_email' ), "[ " . wp_specialchars_decode( get_option( 'blogname' ) ) . " ] ".__( 'Delete My Site' ), $content );
72      ?>
73
74      <p><?php _e( 'Thank you. Please check your email for a link to confirm your action. Your site will not be deleted until this link is clicked. ') ?></p>
75