WP HOOKS
filtrod 5.6.0

email_exists

Args 2Plik wp-includes/user.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters whether the given email exists.

Parametry

ParametrTypOpis
$user_idint | falseThe user ID associated with the email, or false if the email does not exist.
$emailstringThe email to check for existence.

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'email_exists', 'twoja_funkcja', 10, 2 );

function twoja_funkcja($param_1, $param_2) {
	// Twój kod
}

Popularne w tej kategorii