All of you who use WordPress together with Autoptimize Plugin they will know it problem: The additional does not automatically delete Cached files, and must be done manually.
Especially if you have the "Aggregate inline JS" and "Aggregate inline CSS" functions enabled, the amount of data collected in the cache files storage folder is huge.
So the Admin forced to manually delete the specific files.
Below we will see some lines code που αν προστεθούν στο functions.php του themeτος που χρησιμοποιείτε θα κάνουν όλη τη work for you.
We quote the code we use in SecNews, through WPress.gr. It is configured to delete the cached files when the 512MB volume reaches.
//* Clear autoptimize cache at 512MB iGuRu.gr if (class_exists('autoptimizeCache')) { $iguruMaxSize = 512000; $statArr=autoptimizeCache::stats(); $cacheSize=round($statArr[1]/1024); if ($cacheSize>$iguruMaxSize){ autoptimizeCache::clearall(); header("Refresh:0"); } }
Φυσικά μπορείτε να αλλάξετε την τιμή στο $iguruMaxSize στο 1024MB αν δεν θελετε να επιβαρύνετε το sites σας με συνεχιζόμενα php queries.
If you want to change the size, convert 1024MB to KB aka: 1024000.
That's it! The next time you will not need to manually delete the cahced files. At the end of the code as you see there is also a refresh in the header.
