Code-Snippets-Functions/Returns information from child Site/LiteSpeed Cache/litespeed-cache.php
Dan-Claudiu Gavril cdd1bcccd2
Code style
2021-04-27 22:42:42 +02:00

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;
}
?>