wp_cache_close

Definition:
function wp_cache_close() {}

Closes the cache.
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 WordPress no longer needs it.

Return values

returns:Always returns True

Source code

function wp_cache_close() {

	return true;

}

3441

No comments yet... Be the first to leave a reply!

Leave a comment