wp_send_new_user_notification_to_admin

FILTER wp-includes\pluggable.php (ligne 2292) github
Filters whether the admin is notified of a 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_admin'
add_filter('wp_send_new_user_notification_to_admin', 'ma_fonction_filtre', 10, 1);

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

Actualités

Chargement des actualités...