| 1 |
<?php |
| 2 |
$bv_maintenance = plugin_dir_path(__FILE__) . '/wp_maintenance.php'; |
| 3 |
if (file_exists($bv_maintenance)) { |
| 4 |
require_once $bv_maintenance; |
| 5 |
header("Cache-Control: no-cache, no-store, must-revalidate"); |
| 6 |
header("Pragma: no-cache"); |
| 7 |
header("Expires: 0"); |
| 8 |
header('HTTP/1.1 503 Down For Maintenance'); |
| 9 |
echo BVWPMaintenance::$template; |
| 10 |
} |
| 11 |
?> |