wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



get_settings › WordPress Function

Depuis0.71
Dépréciée2.1.0
get_settings ( $option )
Paramètres:
  • (string) $option
    Requis: Oui
Voir:
Retourne:
  • (string)
Défini(e) dans:
Codex:

Get value based on option.



Source

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

	return get_option($option);
}