Skip to content

Instantly share code, notes, and snippets.

@olopsman
Created July 14, 2020 12:00
Show Gist options
  • Save olopsman/8f717bd5689416331e01be60fcf949ba to your computer and use it in GitHub Desktop.
Save olopsman/8f717bd5689416331e01be60fcf949ba to your computer and use it in GitHub Desktop.
function wp_maintenance_mode() {
if (!current_user_can('edit_themes') || !is_user_logged_in()) {
wp_die('<h1>Under Maintenance</h1><br />Website under planned maintenance. Please check back later.');
}
}
add_action('get_header', 'wp_maintenance_mode');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment