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