mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-25 10:52:20 +08:00
8 lines
187 B
PHP
8 lines
187 B
PHP
<?php
|
|
if (class_exists('autoptimizeCache')) {
|
|
autoptimizeCache::clearall();
|
|
echo "Autoptimize Cache cleared successfully!";
|
|
} else {
|
|
echo "Autoptimize Clearing cache failed!";
|
|
}
|
|
?>
|