RSSCache::get() WordPress Method

RSSCache::get($url) is a method used in the RSSCache class to get the cached content for a given URL. If the URL is not in the cache, an empty string is returned.

RSSCache::get( $url ) #


Source

File: wp-includes/rss.php

	function get ($url) {
		$this->ERROR = "";
		$cache_option = 'rss_' . $this->file_name( $url );

		if ( ! $rss = get_transient( $cache_option ) ) {
			$this->debug(
				"Cache does not contain: $url (cache option: $cache_option)"
			);
			return 0;
		}

		return $rss;
	}

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.