You appear to be a bot. Output may be restricted
Description
Read data from a transient for the current session.
Automatically resets the expiration time for the session transient to some time in the future.
Usage
$array = WP_Session::read_data();
Parameters
Returns
array
Source
File name: easy-digital-downloads/includes/libraries/class-wp-session.php
Lines:
1 to 5 of 5
protected function read_data() { $this->container = get_option( "_wp_session_{$this->session_id}", array() ); return $this->container; }