Summery Summery
Updates the value of an option that was already added for the current network.
Syntax Syntax
Parameters Parameters
- $option
-
(Required) Name of option. Expected to not be SQL-escaped.
- $value
-
(Required) Option value. Expected to not be SQL-escaped.
Return Return
(bool) False if value was not updated. True if value was updated.
Source Source
File: wp-includes/option.php
$settings .= $_name . '=' . $_value . '&'; } }
Advertisement
Changelog Changelog
Version | Description |
---|---|
4.4.0 | Modified into wrapper for update_network_option() |
2.8.0 | Introduced. |