add_site_option_<option>
Fires after a specific network option has been successfully added.
Description
The dynamic portion(s) of the hook name refer to the option name.
Parameters (3)
- 0. $option (string)
- Name of the network option.
- 1. $value (mixed)
- Value of the network option.
- 2. $network_id (int)
- ID of the network.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'add_site_option_{$option}', $option, $value, $network_id );
- The following example is for adding a hook callback.
- // define the add_site_option_<option> callback
- function action_add_site_option_option( $option, $value, $network_id ) {
- // make action magic happen here...
- };
- // add the action
- add_action( "add_site_option_{$option}", 'action_add_site_option_option', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( "add_site_option_{$option}", 'action_add_site_option_option', 10, 3 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/option.php
- do_action( "add_site_option_{$option}", $option, $value, $network_id );