acc_update_option
Update an option.
Type: filter
Since: 3.0.0
Source: includes/util/class-options.php line 121
Parameters
| Type | Name | Description |
|---|---|---|
string | $key | The Key to update. |
string|bool|int | $value | The value to set the key to. |
Usage
add_filter( 'acc_update_option', function($key, $value) {
// ...
return $key;
} );