wp_cache_init()WP 2.0.0

Sets up Object Cache Global and assigns it.

No Hooks.

Return

null. Nothing (null).

Usage

wp_cache_init();

Notes

  • Global. WP_Object_Cache. $wp_object_cache

Changelog

Since 2.0.0 Introduced.

wp_cache_init() code WP 6.5.2

function wp_cache_init() {
	$GLOBALS['wp_object_cache'] = new WP_Object_Cache();
}