How to Disable Clear Cache Hook System

How to Disable Clear Cache Hook System

by admin

Clear Cache Hook System is a way for one piece of code to clear cache.

Thanks to this hook system, many plugins and themes can work in harmony with WP Fastest Cache. Plugins and themes can clear the entire cache using this hook system when the cache needs to be cleared.

However, sometimes any plugin or theme can unnecessarily clear the cache continuously and this causes a lot of CPU usage. You can turn the Clear Cache Hook system off as below and have the cache serve only via php.

You need to add the following lines after <?php which exists at the top of wp-config.php file.

define("WPFC_DISABLE_HOOK_CLEAR_ALL_CACHE", true);

Related articles

Placeholder Image
Redirect Loop

WP Fastest Cache adds 301 redirection rule into htaccess file. It causes redirect loop sometimes. If you have such issue,…

Placeholder Image
Clear Cache of All Sites

If you use the MultiSite installation on your wordpress, separate cache is created for each site. When you click on…

Clear Cache After Switch Theme
Clear Cache After Switch Theme

When you switch theme, you might ask for the entire cache to be cleared.