wpmuadminedit
Action HookDescription
Fires just before the action handler in several Network Admin screens. This hook fires on multiple screens in the Multisite Network Admin, including Users, Network Settings, and Site Settings.Hook Information
File Location |
wp-admin/network/edit.php
View on GitHub
|
Hook Type | Action |
Line Number | 28 |
Hook Parameters
This hook doesn't accept any parameters.
Usage Examples
Basic Usage
<?php
// Hook into wpmuadminedit
add_action('wpmuadminedit', 'my_custom_function');
function my_custom_function() {
// Your custom code here
}
Source Code Context
wp-admin/network/edit.php:28
- How this hook is used in WordPress core
<?php
23 * This hook fires on multiple screens in the Multisite Network Admin,
24 * including Users, Network Settings, and Site Settings.
25 *
26 * @since 3.0.0
27 */
28 do_action( 'wpmuadminedit' );
29
30 /**
31 * Fires the requested handler action.
32 *
33 * The dynamic portion of the hook name, `$action`, refers to the name
PHP Documentation
<?php
/**
* Fires just before the action handler in several Network Admin screens.
*
* This hook fires on multiple screens in the Multisite Network Admin,
* including Users, Network Settings, and Site Settings.
*
* @since 3.0.0
*/
Quick Info
- Hook Type: Action
- Parameters: 0
- File: wp-admin/network/edit.php
Related Hooks
Related hooks will be displayed here in future updates.