if ( !
function_exists('wp_clearcookie'
) ) :
/**
* Clears the authentication cookie, logging the user out. This function is deprecated.
*
* @since 1.5.0
* @deprecated 2.5.0 Use wp_clear_auth_cookie()
* @see wp_clear_auth_cookie()
*/
function wp_clearcookie() { _deprecated_function( __FUNCTION__, '2.5.0', 'wp_clear_auth_cookie()'
);
wp_clear_auth_cookie();
}else :
_deprecated_function( 'wp_clearcookie', '2.5.0', 'wp_clear_auth_cookie()'
);
endif;
if ( !
function_exists('wp_get_cookie_login'
) ):
/**
* 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.
*
* @since 2.0.3
* @deprecated 2.5.0
*
* @return bool Always returns false
*/