<?php
define('WP_USE_THEMES', true);
define('APPLICATIO_ENV', 'development');
// Load the WordPress library.
require_once __DIR__ . '/wp-load.php';
// Set up the WordPress query.
wp();
if (Cache::getClient()) {
Cache::flushAll();
echo 'Кеш очищен';
} else {
echo 'Нет соединения с REDIS';
}
return;