LLMS_Sessions::end_current()
Ends the currently active session for the logged in user.
Return Return
(LLMS_Event|WP_Error|false)
Source Source
File: includes/class-llms-sessions.php
public function end_current() { $current = $this->get_current(); if ( ! $current ) { return false; } return $this->end( $current ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.36.0 | Introduced. |