WP HOOKS
akcjaod 4.4.0

network_site_new_created_user

Args 1Plik wp-admin/network/site-new.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Fires after a new user has been created via the network site-new.php page.

Parametry

ParametrTypOpis
$user_idintID of the newly created user.

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej
add_action( 'network_site_new_created_user', 'twoja_funkcja' );

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