Uses
Uses | Description |
---|---|
wp-includes/option.php: set_transient() | Sets/updates the value of a transient. |
wp-includes/rss.php: RSSCache::file_name() |
File: wp-includes/rss.php
function set ($url, $rss) { $cache_option = 'rss_' . $this->file_name( $url ); set_transient($cache_option, $rss, $this->MAX_AGE); return $cache_option; }
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/rsscache/set