apply_filters( "option_{$option}", mixed $value, string $option )
- Since
- 1.5.0, 3.0.0, 4.4.0
Filters the value of an existing option.
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- Value of the option. If stored serialized, it will be unserialized prior to being returned.
$optionstring- Option name.
Where this hook fires · 1
wp-includes/option.php:256get_option()
Source code
* @since 4.4.0 The `$option` parameter was added. * * @param mixed $value Value of the option. If stored serialized, it will be * unserialized prior to being returned. * @param string $option Option name. */ return apply_filters( "option_{$option}", maybe_unserialize( $value ), $option );} /** * Primes specific options into the cache with a single database query. * * Only options that do not already exist in cache will be loaded.Changelog
Introduced in 4.4.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 docblock3.0.0
from the docblock
1.5.0
As 'option_' . $settingfrom 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.