pre_update_option WordPress Filter Hook
The pre_update_option hook is triggered before an option is updated in the database. This hook can be used to perform a security check or data validation before an option is updated.
apply_filters( 'pre_update_option', mixed $value , string $option , mixed $old_value ) #
Filters an option before its value is (maybe) serialized and updated.
Parameters
- $value
(mixed)The new, unserialized option value.
- $option
(string)Name of the option.
- $old_value
(mixed)The old option value.
Source
File: wp-includes/option.php
Changelog
Version | Description |
---|---|
3.9.0 | Introduced. |