wpmu_options action-hookWP 3.0.0

Fires at the end of the Network Settings form, before the submit button.

Usage

add_action( 'wpmu_options', 'wp_kama_wpmu_options_action' );

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

	// action...
}

Changelog

Since 3.0.0 Introduced.

Where the hook is called

In file: /wp-admin/network/settings.php
wpmu_options
wp-admin/network/settings.php 541
do_action( 'wpmu_options' );

Where the hook is used in WordPress

Usage not found.