LLMS_Abstract_User_Data::cache_get( string $key )
Retrieve an item from the cache
Parameters Parameters
- $key
-
(string) (Required) cache key
Return Return
(false|mixed) false on failure
Source Source
File: includes/abstracts/llms.abstract.user.data.php
protected function cache_get( $key ) {
return wp_cache_get( $key, $this->get_cache_group() );
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 3.17.0 | Introduced. |