enable_loading_object_cache_dropin WordPress Filter Hook
The enable_loading_object_cache_dropin hook is used to load the object cache drop-in. This hook is used to load the object cache drop-in. This drop-in provides an interface for the WordPress Object Cache.
apply_filters( 'enable_loading_object_cache_dropin', bool $enable_object_cache ) #
Filters whether to enable loading of the object-cache.php drop-in.
Description
This filter runs before it can be used by plugins. It is designed for non-web runtimes. If false is returned, object-cache.php will never be loaded.
Parameters
- $enable_object_cache
(bool)Whether to enable loading object-cache.php (if present). Default true.
Source
File: wp-includes/load.php
Changelog
Version | Description |
---|---|
5.8.0 | Introduced. |