network_user_new_form action-hookWP 4.5.0

Fires at the end of the new user form in network admin.

Usage

add_action( 'network_user_new_form', 'wp_kama_network_user_new_form_action' );

/**
 * Function for `network_user_new_form` action-hook.
 * 
 * @return void
 */
function wp_kama_network_user_new_form_action(){

	// action...
}

Changelog

Since 4.5.0 Introduced.

Where the hook is called

In file: /wp-admin/network/user-new.php
network_user_new_form
wp-admin/network/user-new.php 158
do_action( 'network_user_new_form' );

Where the hook is used in WordPress

Usage not found.