update_site_option( string $option, mixed $value )
Update the value of an option that was already added for the current network.
Contents
Description Description
See also See also
Parameters Parameters
- $option
-
(string) (Required) Name of option. Expected to not be SQL-escaped.
- $value
-
(mixed) (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
function update_site_option( $option, $value ) { return update_network_option( null, $option, $value ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
4.4.0 | Modified into wrapper for update_network_option() |
2.8.0 | Introduced. |
User Contributed Notes User Contributed Notes
You must log in before being able to contribute a note or feedback.
As of 4.0, despite this function’s name, the value is stored in the network’s sitemeta table, not the site’s options table.