get_settings

The timeline below displays how wordpress function get_settings has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

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);
}

WordPress Version: 4.4

/**
 * 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', 'get_option()');
    return get_option($option);
}

WordPress Version: 3.9

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

WordPress Version: 3.7

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