wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



update_site_option › WordPress Function

Seit2.8.0
Veraltetn/v
update_site_option ( $option, $value )
Parameter: (2)
  • (string) $option Name of the option. Expected to not be SQL-escaped.
    Erforderlich: Ja
  • (mixed) $value Option value. Expected to not be SQL-escaped.
    Erforderlich: Ja
Siehe:
Gibt zurück:
  • (bool) True if the value was updated, false otherwise.
Definiert in:
Codex:
Changelog:
  • 4.4.0

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



Quellcode

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