LLMS_Session::init()
Setup the WP_Session instance.
Contents
Return Return
(array|WP_Session)
Source Source
File: includes/class.llms.session.php
if ( $this->should_init() ) {
$this->init_cookie();
add_action( 'wp_logout', array( $this, 'destroy' ) );
add_action( 'shutdown', array( $this, 'maybe_save_data' ), 20 );
}
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| ?? | Introduced. |