WP_Feed_Cache_Transient::load()publicWP 2.8.0

Gets the transient.

Method of the class: WP_Feed_Cache_Transient{}

No Hooks.

Return

Mixed. Transient value.

Usage

$WP_Feed_Cache_Transient = new WP_Feed_Cache_Transient();
$WP_Feed_Cache_Transient->load();

Changelog

Since 2.8.0 Introduced.

WP_Feed_Cache_Transient::load() code WP 6.5.2

public function load() {
	return get_transient( $this->name );
}