在wordpress上销毁会话

时间:2016-06-30 19:37:01

标签: php wordpress session destroy

我需要使用session_destroy()在Wordpress中完成一个会话,但它无效。

index.php 我有

<a href="logout.php">Log Out</a>

logout.php 我有

<?php session_destroy(); header('Location: http://mysite.stack.br');?>

但会议从未结束。我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

这对我有用,

<?php

$yourSession= WP_Session_Tokens::get_instance(get_current_user_id());
$yourSession->destroy_all();