This plugin is intended primarily for developers that need to allow clients to preview sites before being available to the general public or to tempor …
This plugin is based on an older version of the “Maintenance Redirect” plugin developed by Jack Finch and Peter Hardy-vanDoorn.
Allows you to specify a maintenance mode message or HTML page for your site as well as configure settings to allow specific users to bypass the maintenance mode functionality in order to preview the site prior to public launch, etc.
Any logged in user with WordPress administrator privileges will be allowed to view the site regardless of the settings in the plugin. The exact privilege can be set using a filter hook – see FAQs.
The behaviour of this can be enabled or disabled at any time without losing any of settings configured in its settings pane. However, deactivating the plugin is recommended versus having it activated while disabled.
Functionality to exclude pages from maintenance mode, so only the selected pages will be visible.
When redirect is enabled it can send 2 different header types. “200 OK” is best used for when the site is under development and “503 Service Temporarily Unavailable” is best for when the site is temporarily taken offline for small amendments. If used for a long period of time, 503 can damage your Google ranking.
A list of IP addresses can be set up to completely bypass maintenance mode. This option is useful when needing to allow a client’s entire office to access the site while in maintenance mode without needing to maintain individual access keys.
Access keys work by creating a key on the user’s computer that will be checked against when maintenance mode is active. When a new key is created, a link to create the access key cookie will be emailed to the email address provided. Access can then be revoked either by disabling or deleting the key.
This plugin allows four methods of notifying users that a site is undergoing maintenance:
Note on REST API Access
This plugin does not block access to the WordPress REST API. If you require blocking or restricting access to the REST API, we recommend using alternative methods or dedicated plugins designed for this purpose.
hkdev-maintenance-mode
folder to your plugins directory (usually /wp-content/plugins/
).Plugins
menu in WordPress.Maintenance Mode
Settings panel.There is a filter which allow you to programatically bypass the redirection block:
hkdev_matches
This allows you to run pretty much any test you like, although be aware that the whole redirection thing runs before the $post
global is set up, so WordPress conditionals such as is_post()
and is_tax()
are not available.
This example looks in the $_SERVER
global to see if any part of the URL contains “demo”
function my_hkdev_matches( $hkdev_matches ) { if ( stristr( $_SERVER['REQUEST_URI'], 'demo' ) ) $hkdev_matches[] = "<!-- Demo -->"; return $hkdev_matches; } add_filter( "hkdev_matches", "my_hkdev_matches" );`
Props to @brianhenryie for this!
By default, Maintenance Mode uses the manage_options
cap, but that is normally only applied to administrators. As it stands, a user with a lesser permissions level, such as editor, is able to view the admin side of the site, but not the front end. You can change this using this filter:
hkdev_user_can
This filter is used to pass a different WordPress capability to check if the logged-in user has permission to view the site and thus bypass the redirection, such as edit_posts
. Note that this is run before $post
is set up, so WordPress conditionals such as is_post()
and is_tax()
are not available. However, it’s not really meant for programatically determining whether a user should have access, but rather just changing the default capability to be tested, so you don’t really need to do anything other than the example below.
function my_hkdev_user_can( $capability ) { return "edit_posts"; } add_filter( "hkdev_user_can", "my_hkdev_user_can" );