network_admin_edit_(action) action-hookWP 3.1.0

Fires the requested handler action.

The dynamic portion of the hook name, $action, refers to the name of the requested action derived from the GET request.

Usage

add_action( 'network_admin_edit_(action)', 'wp_kama_network_admin_edit_action' );

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

	// action...
}

Changelog

Since 3.1.0 Introduced.

Where the hook is called

In file: /wp-admin/network/edit.php
network_admin_edit_(action)
wp-admin/network/edit.php 38
do_action( "network_admin_edit_{$action}" );

Where the hook is used in WordPress

Usage not found.