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



get_settings › WordPress Function

Seit0.71
Veraltet2.1.0
get_settings ( $option )
Parameter:
  • (string) $option
    Erforderlich: Ja
Siehe:
Gibt zurück:
  • (string)
Definiert in:
Codex:

Get value based on option.



Quellcode

function get_settings($option) {
	_deprecated_function( __FUNCTION__, '2.1.0', 'get_option()' );

	return get_option($option);
}