auto_core_update_email
Filters the email sent following an automatic background core update.
Использование
add_filter( 'auto_core_update_email', 'wp_kama_auto_core_update_email_filter', 10, 4 );
/**
* Function for `auto_core_update_email` filter-hook.
*
* @param array $email Array of email arguments that will be passed to wp_mail().
* @param string $type The type of email being sent. Can be one of 'success', 'fail', 'manual', 'critical'.
* @param object $core_update The update offer that was attempted.
* @param mixed $result The result for the core update. Can be WP_Error.
*
* @return array
*/
function wp_kama_auto_core_update_email_filter( $email, $type, $core_update, $result ){
// filter...
return $email;
}
- $email(массив)
Array of email arguments that will be passed to wp_mail().
-
to(строка)
The email recipient. An array of emails can be returned, as handled by wp_mail(). -
subject(строка)
The email's subject. -
body(строка)
The email message body. - headers(строка)
Any email headers.
По умолчанию: no headers
-
- $type(строка)
- The type of email being sent. Can be one of 'success', 'fail', 'manual', 'critical'.
- $core_update(объект)
- The update offer that was attempted.
- $result(разное)
- The result for the core update. Can be WP_Error.
Список изменений
| С версии 3.7.0 | Введена. |
Где вызывается хук
auto_core_update_email
wp-admin/includes/class-wp-automatic-updater.php 1147
$email = apply_filters( 'auto_core_update_email', $email, $type, $core_update, $result );