WP HOOKS
filtrod 4.9.0

username_exists

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

Opis — z kodu źródłowego

Filters whether the given username exists.

Parametry

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

Wywołanie

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

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

Popularne w tej kategorii