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



get_site_option › WordPress Function

Seit2.8.0
Veraltetn/v
get_site_option ( $option, $default_value = false, $deprecated = true )
Parameter: (3)
  • (string) $option Name of the option to retrieve. Expected to not be SQL-escaped.
    Erforderlich: Ja
  • (mixed) $default_value Optional. Value to return if the option doesn't exist. Default false.
    Erforderlich: Nein
    Standard: false
  • (bool) $deprecated Whether to use cache. Multisite only. Always set to true.
    Erforderlich: Nein
    Standard: true
Siehe:
Gibt zurück:
  • (mixed) Value set for the option.
Definiert in:
Codex:
Changelog:
  • 4.4.0
  • 4.4.0

Retrieve an option value for the current network based on name of option.



Quellcode

function get_site_option( $option, $default_value = false, $deprecated = true ) {
	return get_network_option( null, $option, $default_value );
}