Changeset 36250 for trunk/src/wp-includes/class-feed.php
- Timestamp:
- 01/10/2016 01:25:44 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-feed.php
r34348 r36250 10 10 * @static 11 11 * @access public 12 * 13 * @param string $location URL location (scheme is used to determine handler). 14 * @param string $filename Unique identifier for cache object. 15 * @param string $extension 'spi' or 'spc'. 16 * @return WP_Feed_Cache_Transient Feed cache handler object that uses transients. 12 17 */ 13 18 public function create($location, $filename, $extension) { … … 21 26 public $lifetime = 43200; //Default lifetime in cache of 12 hours 22 27 28 /** 29 * Class instantiator. 30 * 31 * @param string $location URL location (scheme is used to determine handler). 32 * @param string $filename Unique identifier for cache object. 33 * @param string $extension 'spi' or 'spc'. 34 */ 23 35 public function __construct($location, $filename, $extension) { 24 36 $this->name = 'feed_' . $filename;
Note: See TracChangeset
for help on using the changeset viewer.