Autoptimize for WordPress: Automatic Cache Cleaning

All of you who use WordPress together with Autoptimize Plugin will know the problem: The add-on does not automatically delete Cached files, and must be done manually.

Autoptimize

Especially if you have the “Aggregate inline JS” and “Aggregate inline CSS” functions enabled the volume of which is collected in the cache files storage folder is huge.

So the forced to manually delete the specific files.

Below we will see some lines which if added to the functions.php of the theme you are using will do all the 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"); }

Of course you can change the value in $ iguruMaxSize to 1024MB if you do not want to burden your sites with ongoing 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.

iGuRu.gr The Best Technology Site in Greecefgns

every publication, directly to your inbox

Join the 2.087 registrants.

Written by giorgos

George still wonders what he's doing here ...

Leave a reply

Your email address is not published. Required fields are mentioned with *

Your message will not be published if:
1. Contains insulting, defamatory, racist, offensive or inappropriate comments.
2. Causes harm to minors.
3. It interferes with the privacy and individual and social rights of other users.
4. Advertises products or services or websites.
5. Contains personal information (address, phone, etc.).