Summery Summery
Retrieve the data saved to the cache
Syntax Syntax
Return Return
(array) Data for SimplePie::$data
Source Source
File: wp-includes/SimplePie/Cache/File.php
{
if (file_exists($this->name) && is_readable($this->name))
{
return unserialize(file_get_contents($this->name));
}
return false;
}