network_admin_edit_(action)
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}" );