wp_network_dashboard_setup action-hookWP 3.1.0

Fires after core widgets for the Network Admin dashboard have been registered.

Usage

add_action( 'wp_network_dashboard_setup', 'wp_kama_network_dashboard_setup_action' );

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

	// action...
}

Changelog

Since 3.1.0 Introduced.

Where the hook is called

wp_dashboard_setup()
wp_network_dashboard_setup
wp-admin/includes/dashboard.php 101
do_action( 'wp_network_dashboard_setup' );

Where the hook is used in WordPress

Usage not found.