wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_get_cookie_login › WordPress Function

Since2.0.3
Deprecated2.5.0
wp_get_cookie_login ( No parameters )
Returns:
  • (bool) Always returns false
Defined at:
Codex:

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.


Source

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