wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



get_settings › WordPress Function

Da0.71
Deprecato2.1.0
get_settings ( $option )
Parametri:
  • (string) $option
    Richiesto:
Vedi:
Ritorna:
  • (string)
Definito a:
Codex:

Get value based on option.



Sorgenti

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

	return get_option($option);
}