network_plugin_loaded action-hookWP 5.1.0

Fires once a single network-activated plugin has loaded.

Usage

add_action( 'network_plugin_loaded', 'wp_kama_network_plugin_loaded_action' );

/**
 * Function for `network_plugin_loaded` action-hook.
 * 
 * @param string $network_plugin Full path to the plugin's main file.
 *
 * @return void
 */
function wp_kama_network_plugin_loaded_action( $network_plugin ){

	// action...
}
$network_plugin(string)
Full path to the plugin's main file.

Changelog

Since 5.1.0 Introduced.

Where the hook is called

In file: /wp-settings.php
network_plugin_loaded
wp-settings.php 472
do_action( 'network_plugin_loaded', $network_plugin );

Where the hook is used in WordPress

Usage not found.