apply_filters( "pre_update_option_{$option}", mixed $value, mixed $old_value, string $option )
- Since
- 2.6.0, 4.4.0
Filters a specific option before its value is (maybe) serialized and updated.
Description
The dynamic portion of the hook name, $option, refers to the option name.
Compatibility
- WordPress
- since 4.4.0
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0).
Parameters
$valuemixed- The new, unserialized option value.
$old_valuemixed- The old option value.
$optionstring- Option name.
Where this hook fires · 1
wp-includes/option.php:902update_option()
Source code
* @since 4.4.0 The `$option` parameter was added. * * @param mixed $value The new, unserialized option value. * @param mixed $old_value The old option value. * @param string $option Option name. */ $value = apply_filters( "pre_update_option_{$option}", $value, $old_value, $option ); /** * Filters an option before its value is (maybe) serialized and updated. * * @since 3.9.0 *Changelog
Introduced in 2.6.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
4.4.0
The
$option parameter was added.from the docblock2.6.0
Introduced.from the docblock
About this page
- Parsed data
- Generated from the wordpress-develop 6.9.7 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
- Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.