wp_send_new_user_notification_to_user

FILTER wp-includes\pluggable.php (ligne 2357) github
Filters whether the user is notified of their new user registration.

Paramètres

Entrée :
true, $user
Sortie :
@param bool    $send Whether to send the email. Default true.
@param WP_User $user User object for new user.

Utilisation

// Modifier la valeur avec le filtre 'wp_send_new_user_notification_to_user'
add_filter('wp_send_new_user_notification_to_user', 'ma_fonction_filtre', 10, 1);

function ma_fonction_filtre(true) {
    // Modifier la valeur
    return true;
}

Actualités

Chargement des actualités...