LLMS_Sessions::end_current()

Ends the currently active session for the logged in user.


Return Return

(LLMS_Event|WP_Error|false)


Top ↑

Source Source

File: includes/class-llms-sessions.php

	public function end_current() {

		$current = $this->get_current();
		if ( ! $current ) {
			return false;
		}

		return $this->end( $current );

	}


Top ↑

Changelog Changelog

Changelog
Version Description
3.36.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.