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
178 B
PHP
8 lines
178 B
PHP
<?php
|
|
if ( function_exists( 'sg_cachepress_purge_cache' ) ) {
|
|
sg_cachepress_purge_cache();
|
|
echo "Cache cleared successfully!";
|
|
} else {
|
|
echo "Clearing cache failed!";
|
|
}
|
|
?>
|