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