Filters the support message sent with the the fatal error protection email.
__( 'Please contact your host for assistance with investigating this issue further.'
Sortie :
@param string $message The Message to include in the email.
// Modifier la valeur avec le filtre 'recovery_email_support_info'
add_filter('recovery_email_support_info', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre(__( 'Please contact your host for assistance with investigating this issue further.') {
// Modifier la valeur
return __( 'Please contact your host for assistance with investigating this issue further.';
}
Chargement des actualités...