A WordPress plugin to disable your website front-end and display a message to your visitors while still allowing back-end access.
A plugin to temporarily disable your website front-end and display a message
to your visitors while still allowing back-end access. This plugin can be
enabled or disabled with one click and also supports using your own custom
HTML/CSS output for the splash page so you can make it as simple or as custom
as you need it to be.
This plugin is especially useful if you need to temporarily make your site
unavailable to your visitors. For example, you’re working on a new blog or
website and you want to show a temporary “coming soon” page to your visitors
while you’re working on it; or you’re fixing major bugs that would disrupt the
user experience and need to make the front-end temporarily unavailable; or any
other reason that you would need to make your website temporarily unavailable.
This plugin can be configured to allow admin users (you) to still be able to
view the front-end while the splash page is enabled. If other users need to be
able to review the site, you can enable authenticated users and/or specific IP
addresses to be able to bypass the splash page as well.
disable-site
plugin directory to the /wp-content/plugins/
Plugins
menu in WordPress.disable-site
plugin directory to the /wp-content/plugins/
Plugins
menu in WordPress.Simply navigate to the configuration page for the plugin and set the textfield
labeled Custom Message
to your custom message.
There are two ways to do this: via the configuration page for the plugin, or
in code. To specify your own HTML via the configuration page, navigate to the
configuration page and paste your HTML and/or CSS into the field labeled Custom
.
HTML Output
To specify your own HTML in code, paste the following in your functions.php
file and customize it to suit your needs.
if ($disable_site_plugin) { $disable_site_plugin->set_output_html( 'This is an example of <strong>custom</strong> HTML output.' ); }
Yes it can! You can use any HTML, CSS, and/or JavaScript that you need.
Simply navigate to the configuration page for the plugin and set the dropdown
labeled Enable Splash Page
to No
.
Simply navigate to the configuration page for the plugin and set the dropdown
labeled Admin Access
to Yes
.
Simply navigate to the configuration page for the plugin and set the dropdown
labeled Authenticated User Access
to Yes
.
Simply navigate to the configuration page for the plugin and enter each IP
address into the textarea labeled Allowed IPs
(each one on it’s own line).
The initial release of this plugin.
Cleaned everything up for release.
Updated version number for the official initial release.
Added custom message field and IP address filtering.
Added 503 response header per @pembo13’s suggestion.
Refactored to use appropriate WordPress coding standards.