wp_get_cookie_login

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

WordPress Version: 4.6

/**
 * Gets the user cookie login. This function is deprecated.
 *
 * This function is deprecated and should no longer be extended as it won't be
 * used anywhere in WordPress. Also, plugins shouldn't use it either.
 *
 * @since 2.0.3
 * @deprecated 2.5.0
 *
 * @return bool Always returns false
 */
function wp_get_cookie_login()
{
    _deprecated_function(__FUNCTION__, '2.5.0');
    return false;
}

WordPress Version: 4.4

/**
 * Gets the user cookie login. This function is deprecated.
 *
 * This function is deprecated and should no longer be extended as it won't be
 * used anywhere in WordPress. Also, plugins shouldn't use it either.
 *
 * @since 2.0.3
 * @deprecated 2.5.0
 *
 * @return bool Always returns false
 */
function wp_get_cookie_login()
{
    _deprecated_function(__FUNCTION__, '2.5');
    return false;
}

WordPress Version: 3.9

/**
 * Gets the user cookie login. This function is deprecated.
 *
 * This function is deprecated and should no longer be extended as it won't be
 * used anywhere in WordPress. Also, plugins shouldn't use it either.
 *
 * @since 2.0.3
 * @deprecated 2.5.0
 * @deprecated No alternative
 *
 * @return bool Always returns false
 */
function wp_get_cookie_login()
{
    _deprecated_function(__FUNCTION__, '2.5');
    return false;
}

WordPress Version: 3.7

/**
 * Gets the user cookie login. This function is deprecated.
 *
 * This function is deprecated and should no longer be extended as it won't be
 * used anywhere in WordPress. Also, plugins shouldn't use it either.
 *
 * @since 2.0.3
 * @deprecated 2.5
 * @deprecated No alternative
 *
 * @return bool Always returns false
 */
function wp_get_cookie_login()
{
    _deprecated_function(__FUNCTION__, '2.5');
    return false;
}