RSSCache::__construct( $base = '', $age = '' )
PHP5 constructor.
Description Description
Source Source
File: wp-includes/rss.php
function __construct( $base = '', $age = '' ) { $this->BASE_CACHE = WP_CONTENT_DIR . '/cache'; if ( $base ) { $this->BASE_CACHE = $base; } if ( $age ) { $this->MAX_AGE = $age; } }
Expand full source code Collapse full source code View on Trac