Skip to content

Instantly share code, notes, and snippets.

View mattsandersuk's full-sized avatar
🐝

Matt Sanders mattsandersuk

🐝
  • UK
View GitHub Profile
@mattsandersuk
mattsandersuk / maintenance.php
Created August 14, 2023 09:37 — forked from bjornjohansen/maintenance.php
Custom WordPress maintenance mode page
<?php
wp_load_translations_early();
$protocol = wp_get_server_protocol();
header( "$protocol 503 Service Unavailable", true, 503 );
header( 'Content-Type: text/html; charset=utf-8' );
header( 'Retry-After: 30' );
?>
<!DOCTYPE html>
<html>
@mattsandersuk
mattsandersuk / 503.php
Last active August 29, 2015 14:11 — forked from bavington/503.php
<?php
header('HTTP/1.1 503 Service Temporarily Unavailable');
header('Retry-After: Sat, 8 Oct 2011 18:27:00 GMT'); //How long before you estimate your website will be back.
?>
<!DOCTYPE HTML>
<html>
<head>
<div id="address" itemscope itemtype="http://schema.org/Organization">
<ul itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
<li class="boldcopyright" itemprop="name">Creare Communications</li>
<li itemprop="streetAddress">Boughton Leigh House</li>
<li itemprop="addressLocality">Rugby</li>
<li itemprop="addressRegion">Warwickshire </li>
<li itemprop="postalCode">CV21 1HL</li>
</ul>
</div>