Uses
| Uses | Description |
|---|---|
| wp-includes/option.php: get_transient() | Retrieves the value of a transient. |
| wp-includes/rss.php: RSSCache::file_name() |
File: wp-includes/rss.php
function check_cache ( $url ) {
$this->ERROR = "";
$cache_option = 'rss_' . $this->file_name( $url );
if ( get_transient($cache_option) ) {
// object exists and is current
return 'HIT';
} else {
// object does not exist
return 'MISS';
}
}
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/rsscache/check_cache