recovery_email_support_info хук-фильтрWP 5.2.0

Filters the support message sent with the the fatal error protection email.

Использование

add_filter( 'recovery_email_support_info', 'wp_kama_recovery_email_support_info_filter' );

/**
 * Function for `recovery_email_support_info` filter-hook.
 * 
 * @param string $message The Message to include in the email.
 *
 * @return string
 */
function wp_kama_recovery_email_support_info_filter( $message ){

	// filter...
	return $message;
}
$message(строка)
The Message to include in the email.

Список изменений

С версии 5.2.0 Введена.

Где вызывается хук

WP_Recovery_Mode_Email_Service::send_recovery_mode_email()
recovery_email_support_info
wp-includes/class-wp-recovery-mode-email-service.php 141
$support = apply_filters( 'recovery_email_support_info', __( 'Please contact your host for assistance with investigating this issue further.' ) );

Где используется хук в WordPress

Использование не найдено.