Warning: This function has been deprecated.

wp_get_cookie_login() WordPress Function

The wp_get_cookie_login() function retrieves the user's login cookie. This function is used to help WordPress log in a user automatically.

wp_get_cookie_login() #

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.


Top ↑

Return

(bool) Always returns false


Top ↑

Source

File: wp-includes/pluggable-deprecated.php

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


Top ↑

Changelog

Changelog
VersionDescription
2.5.0This function has been deprecated.
2.0.3Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.