PluginProbe
The WP Remote WordPress Plugin / 5.68
The WP Remote WordPress Plugin v5.68
6.72 6.69 6.65 6.62 6.48 6.47 4.87 4.97 5.05 5.09 5.16 5.22 5.24 5.25 5.38 5.41 5.42 5.45 5.47 5.53 5.56 5.65 5.68 5.72 5.73 All 53 releases
wpremote / maintenance / template.php

template.php in The WP Remote WordPress Plugin 5.68, at maintenance/template.php

11 lines 341 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 ?>