filtrod 6.1.0
wp_send_new_user_notification_to_user
Opis — z kodu źródłowego
Filters whether the user is notified of their new user registration.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$send | bool | Whether to send the email. Default true. |
$user | \WP_User | User object for new user. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'wp_send_new_user_notification_to_user', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'wp_send_new_user_notification_to_user', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}Popularne w tej kategorii