How to Put Your WordPress Website into Maintenance Mode

Leave a comment
You must be logged in to post a comment.
How to Put Your WordPress Website into Maintenance Mode
<?php
$upgrading = time();
?>
<html>
<head><title>Offline for maintenance</title></head>
<body>
<h2 style="text-align: center;">Sorry, we're currently offline for scheduled maintenance.
We'll be back soon!</h2>
<p style="text-align: center;"><img src="https://example.com/wp-content/uploads/2021/12/clouds.jpg" width="900" height="700" /></p>
</body>
</html>
You must be logged in to post a comment.