wp_clearcookie()

In this article

This function has been deprecated. Use wp_clear_auth_cookie() instead.

Clears the authentication cookie, logging the user out. This function is deprecated.

Description

See also

Source

function wp_clearcookie() {
	_deprecated_function( __FUNCTION__, '2.5.0', 'wp_clear_auth_cookie()' );
	wp_clear_auth_cookie();
}

Changelog

VersionDescription
2.5.0Use wp_clear_auth_cookie()
1.5.0Introduced.

User Contributed Notes

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