WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 62 | Webmaster |
| 63 | ###SITE_NAME###" ); |
| 64 | /** |
| 65 | * Filters the email content sent when a site in a Multisite network is deleted. |
| 66 | * |
| 67 | * @since 3.0.0 |
| 68 | * |
| 69 | * @param string $content The email content that will be sent to the user who deleted a site in a Multisite network. |
| 70 | */ |
| 71 | $content = apply_filters( 'delete_site_email_content', $content ); |
| 72 | |
| 73 | $content = str_replace( '###USERNAME###', $user->user_login, $content ); |
| 74 | $content = str_replace( '###URL_DELETE###', $url_delete, $content ); |
| 75 | $content = str_replace( '###SITE_NAME###', get_network()->site_name, $content ); |
| 76 | |
| 77 | wp_mail( get_option( 'admin_email' ), "[ " . wp_specialchars_decode( get_option( 'blogname' ) ) . " ] ".__( 'Delete My Site' ), $content ); |
| 78 | |
| 79 | if ( $switched_locale ) { |
| 80 | restore_previous_locale(); |