wp_cache_close()

Closes the cache.


Description

This function has ceased to do anything since WordPress 2.5. The functionality was removed along with the rest of the persistent cache.

This does not mean that plugins can’t implement this function when they need to make sure that the cache is cleaned up after ClassicPress no longer needs it.


Return

(true) Always returns true.


Source

File: wp-includes/cache.php

function wp_cache_close() {
	return true;
}


Changelog

Changelog
Version Description
WP-2.0.0 Introduced.