mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-24 10:42:19 +08:00
8 lines
210 B
PHP
8 lines
210 B
PHP
<?php
|
|
if ( has_action( 'litespeed_purge_all' ) ) {
|
|
do_action( 'litespeed_purge_all' );
|
|
echo "LiteSpeed Cache cleared successfully!", PHP_EOL;
|
|
} else {
|
|
echo "LiteSpeed Cache not installed", PHP_EOL;
|
|
}
|
|
?>
|