update_wpmu_options
Fires after the network options are updated.
Description
do_action( 'update_wpmu_options' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'update_wpmu_options' );
- The following example is for adding a hook callback.
- // define the update_wpmu_options callback
- function action_update_wpmu_options( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'update_wpmu_options', 'action_update_wpmu_options', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'update_wpmu_options', 'action_update_wpmu_options', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /wp-admin/network/settings.php
- do_action( 'update_wpmu_options' );