SimplePie::set_cache_location() public WP 1.0
Set the file system location where the cached files should be stored
{} Это метод класса: SimplePie{}
Хуков нет.
Возвращает
Null. Ничего.
Использование
$SimplePie = new SimplePie(); $SimplePie->set_cache_location( $location );
- $location(строка)
- The file system location.
По умолчанию: './cache'
Код SimplePie::set_cache_location() SimplePie::set cache location WP 5.6
public function set_cache_location($location = './cache')
{
$this->cache_location = (string) $location;
}