我有一个application over Wordpress 对于高级用户,用户可以查看页面after logging 记入他的账户。
但有一个问题是,同一个用户可以登录表单multiple computer, 所以我想为用户会话创建函数,当用户登录Wordpress时expires all other sessions,
通过这种方式,我可以防止错过使用我的Wordpress应用程序。
我想要一个one current active session.
最合适的回答,由SO网友:Shiv Singh 整理而成
答案已更新,因为不需要编写函数,只需使用wp_destroy_all_other_sessions
具有的函数init
像这样
add_action(\'init\', \'wp_destroy_all_other_sessions\');
开发了插件并发布在WordPress上,下载地址:
One Active session