wp_get_cookie_login(): bool

In this article

This function has been deprecated.

Gets the user cookie login. This function is deprecated.

Description

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.

Return

bool Always returns false

Source

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

Changelog

VersionDescription
2.5.0This function has been deprecated.
2.0.3Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.