WP_Community_Events::get_cached_events()

Gets cached events.


Description Description


Return Return

(false|array) false on failure; an array containing location and events items on success.


Top ↑

Source Source

File: wp-admin/includes/class-wp-community-events.php

	public function get_cached_events() {
		$cached_response = get_site_transient( $this->get_events_transient_key( $this->user_location ) );
		$cached_response = $this->trim_events( $cached_response );

		return $this->format_event_data_time( $cached_response );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
4.8.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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