wpseek.com
A WordPress-centric search engine for devs and theme authors



get_settings › WordPress Function

Since0.71
Deprecated2.1.0
get_settings ( $option )
Parameters:
  • (string) $option
    Required: Yes
See:
Returns:
  • (string)
Defined at:
Codex:

Get value based on option.



Source

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

	return get_option($option);
}