WP HOOKS
filtrod 6.0.0

send_retrieve_password_email

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

Opis — z kodu źródłowego

Filters whether to send the retrieve password email.

Return false to disable sending the email.

Parametry

ParametrTypOpis
$sendboolWhether to send the email.
$user_loginstringThe username for the user.
$user_data\WP_UserWP_User object.

Wywołanie

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

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

Popularne w tej kategorii