apply_filters( "pre_update_option_{$option}", mixed $value, mixed $old_value, string $option )

Filters a specific option before its value is (maybe) serialized and updated.


Description Description

The dynamic portion of the hook name, $option, refers to the option name.


Parameters Parameters

$value

(mixed) The new, unserialized option value.

$old_value

(mixed) The old option value.

$option

(string) Option name.


Top ↑

Source Source

File: wp-includes/option.php

View on Trac


Top ↑

Changelog Changelog

Changelog
Version Description
4.4.0 The $option parameter was added.
2.6.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.