WP HOOKS
filtrod MU (3.0.0)

wpmu_signup_user_notification_subject

Args 5Plik wp-includes/ms-functions.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters the subject of the notification email of new user signup.

Parametry

ParametrTypOpis
$subjectstringSubject of the notification email.
$user_loginstringUser login name.
$user_emailstringUser email address.
$keystringActivation key created in wpmu_signup_user().
$metaarraySignup meta data. Default empty array.

Wywołanie

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

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