wpseek.com
WordPress开发者和主题制作者的搜索引擎



wp_clearcookie › WordPress Function

Since1.5.0
已弃用2.5.0
wp_clearcookie ( 没有参数 )
查看:
定义在:
文档:

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



源码

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