我只想在浏览器选项卡关闭后删除我的 wordpress cookie,
在 pluggable.php 文件第 653 行:
if ( $remember ) { $expiration = $expire = time() + apply_filters('auth_cookie_expiration', 1209600, $user_id, $remember); } else { $expiration = time() + apply_filters('auth_cookie_expiration', 500, $user_id, $remember); $过期 = 0;
我将所有我喜欢的东西都更改为 $expirtation 为 "" 或 1
并过期为 ""
但它在 wordpress 上没有任何作用
我什至尝试调用 wp_clear_auth_cookie() 函数 onunload 事件但它不起作用
浏览器/标签关闭后我应该怎么做才能删除cookie?