delete_site_email_content хук-фильтр . WP 3.0.0
Filters the text for the email sent to the site admin when a request to delete a site in a Multisite network is submitted.
Использование
add_filter( 'delete_site_email_content', 'filter_function_name_7006' ); function filter_function_name_7006( $content ){ // filter... return $content; }
- $content(строка)
- The email text.
Список изменений
С версии 3.0.0 | Введена. |
Где вызывается хук
В файле: /wp-admin/ms-delete-site.php
delete_site_email_content
wp-admin/ms-delete-site.php 81
$content = apply_filters( 'delete_site_email_content', $content );