wp_get_cookie_login()WP 2.0.3

Deprecated since 2.5.0. It is no longer supported and may be removed in future releases. It is recommended to replace this function with the same one.

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.

No Hooks.

Returns

true|false. Always returns false

Usage

wp_get_cookie_login();

Changelog

Since 2.0.3 Introduced.
Deprecated since 2.5.0

wp_get_cookie_login() code WP 6.8.1

function wp_get_cookie_login() {
	_deprecated_function( __FUNCTION__, '2.5.0' );
	return false;
}