update_site_option( string $option, mixed $value ): bool

Updates the value of an option that was already added for the current network.

Description

See also

Parameters

$optionstringrequired
Name of the option. Expected to not be SQL-escaped.
$valuemixedrequired
Option value. Expected to not be SQL-escaped.

Return

bool True if the value was updated, false otherwise.

Source

function update_site_option( $option, $value ) {
	return update_network_option( null, $option, $value );
}

Changelog

VersionDescription
4.4.0Modified into wrapper for update_network_option()
2.8.0Introduced.

User Contributed Notes

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