WP HOOKS
filtrod 2.0.1

validate_username

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

Opis — z kodu źródłowego

Filters whether the provided username is valid.

Parametry

ParametrTypOpis
$validboolWhether given username is valid.
$usernamestringUsername to check.

Wywołanie

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

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

Popularne w tej kategorii