update_option
update_option ( $option, $value, $autoload = null )
Parameters:- (string) option Name of the option to update. Expected to not be SQL-escaped.
- (mixed) value Option value. Must be serializable if non-scalar. Expected to not be SQL-escaped.
- (string|bool) autoload Optional. Whether to load the option when WordPress starts up. For existing options, `$autoload` can only be updated using `update_option()` if `$value` is also changed. Accepts 'yes'|true to enable or 'no'|false to disable. For non-existent options, the default value is 'yes'. Default null.
Returns:- (bool) True if the value was updated, false otherwise.
Defined at:Change Log: - Introduced in WordPress: 1.0.0
- Deprecated in WordPress: —
Description
Updates the value of an option that was already added.You do not need to serialize values. If the value needs to be serialized,
then it will be serialized before it is inserted into the database.
Remember, resources cannot be serialized or added as an option.
If the option does not exist, it will be created.
This function is designed to work with or without a logged-in user. In terms of security,
plugin developers should check the current user's capabilities before updating any options.