WP_Community_Events::cache_events
Caches an array of events data from the Events API.
Method of the class: WP_Community_Events{}
No Hooks.
Returns
true|false. true if events were cached; false if not.
Usage
// protected - for code of main (parent) or child class $result = $this->cache_events( $events, $expiration );
- $events(array) (required)
- Response body from the API request.
- $expiration(int|false)
- Amount of time to cache the events.
Default:false
Changelog
| Since 4.8.0 | Introduced. |
WP_Community_Events::cache_events() WP Community Events::cache events code WP 7.0
protected function cache_events( $events, $expiration = false ) {
$set = false;
$transient_key = $this->get_events_transient_key( $events['location'] );
$cache_expiration = $expiration ? absint( $expiration ) : HOUR_IN_SECONDS * 12;
if ( $transient_key ) {
$set = set_site_transient( $transient_key, $events, $cache_expiration );
}
return $set;
}