do_action( "update_option_{$option}", mixed $old_value, mixed $value, string $option )
- Since
- 2.0.1, 4.4.0
Fires after the value of a specific option has been successfully 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
$old_valuemixed- The old option value.
$valuemixed- The new option value.
$optionstring- Option name.
Where this hook fires · 1
wp-includes/option.php:1020update_option()
Source code
* @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. */ do_action( "update_option_{$option}", $old_value, $value, $option ); /** * Fires after the value of an option has been successfully updated. * * @since 2.9.0 *Changelog
Introduced in 2.0.1. 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.0.1
Introduced.from the docblock
About this page
- Parsed data
- Generated from the wordpress-develop 6.8.8 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.