WordPress Version: 4.6
/**
* Get value based on option.
*
* @since 0.71
* @deprecated 2.1.0 Use get_option()
* @see get_option()
*
* @param string $option
* @return string
*/
function get_settings($option)
{
_deprecated_function(__FUNCTION__, '2.1.0', 'get_option()');
return get_option($option);
}