Warning: This method has been deprecated. Use switch_to_blog() instead.

WP_Object_Cache::reset()

Resets cache keys.


Description Description

See also See also


Top ↑

Source Source

File: wp-includes/cache.php

	public function reset() {
		_deprecated_function( __FUNCTION__, '3.5.0', 'switch_to_blog()' );

		// Clear out non-global caches since the blog ID has changed.
		foreach ( array_keys( $this->cache ) as $group ) {
			if ( ! isset( $this->global_groups[ $group ] ) ) {
				unset( $this->cache[ $group ] );
			}
		}
	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.5.0 Use switch_to_blog()
3.0.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.