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 |
|---|---|
| 72 | ###SITE_NAME###" |
| 73 | ); |
| 74 | /** |
| 75 | * Filters the email content sent when a site in a Multisite network is deleted. |
| 76 | * |
| 77 | * @since 3.0.0 |
| 78 | * |
| 79 | * @param string $content The email content that will be sent to the user who deleted a site in a Multisite network. |
| 80 | */ |
| 81 | $content = apply_filters( 'delete_site_email_content', $content ); |
| 82 | |
| 83 | $content = str_replace( '###USERNAME###', $user->user_login, $content ); |
| 84 | $content = str_replace( '###URL_DELETE###', $url_delete, $content ); |
| 85 | $content = str_replace( '###SITE_NAME###', get_network()->site_name, $content ); |
| 86 | |
| 87 | wp_mail( |
| 88 | get_option( 'admin_email' ), |
| 89 | sprintf( |
| 90 | /* translators: %s: Site title. */ |