Filters the debug email that can be sent following an automatic background core update.
$email, $failures, $this->update_results
Sortie :
@param array $email {
@param int $failures The number of failures encountered while upgrading.
@param mixed $results The results of all attempted updates.
// Modifier la valeur avec le filtre 'automatic_updates_debug_email'
add_filter('automatic_updates_debug_email', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre($email) {
// Modifier la valeur
return $email;
}
Chargement des actualités...