Files
Filename | Hook Type | Line Number | PHP Doc |
---|---|---|---|
wp-includes/option.php | do_action | 554 | /** * Fires after the value of a specific option has been successfully updated. * * The dynamic portion of the hook name, `$option`, refers to the option name. * * @since 2.0.1 * @since 4.4.0 The `$option` parameter was added. * * @param mixed $old_value The old option value. * @param mixed $value The new option value. * @param string $option Option name. */ |
Hook Parameters
Parameter Type | Name | Description |
---|---|---|
mixed | $old_value | The old option value. |
mixed | $value | The new option value. |
string | $option | Option name. |