我需要使用session_destroy()
在Wordpress中完成一个会话,但它无效。
在 index.php 我有
<a href="logout.php">Log Out</a>
在 logout.php 我有
<?php session_destroy(); header('Location: http://mysite.stack.br');?>
但会议从未结束。我该如何解决这个问题?
答案 0 :(得分:0)
这对我有用,
<?php
$yourSession= WP_Session_Tokens::get_instance(get_current_user_id());
$yourSession->destroy_all();