wp_get_cookie_login

Advertisement

Deprecated Deprecated

This function has been deprecated.

Summery Summery

Gets the user cookie login. This function is deprecated.

Syntax Syntax

wp_get_cookie_login()

Description 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 Return

(bool) Always returns false

Source Source

File: wp-includes/pluggable-deprecated.php

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

Advertisement

Changelog Changelog

Changelog
Version Description
2.5.0 This function has been deprecated.
2.0.3 Introduced.

Advertisement

Leave a Reply