Skip to content

Instantly share code, notes, and snippets.

@digitalinkwell
Created May 13, 2016 22:24
Show Gist options
  • Save digitalinkwell/a73140c68ad910d22afc5ffa35c39b78 to your computer and use it in GitHub Desktop.
Save digitalinkwell/a73140c68ad910d22afc5ffa35c39b78 to your computer and use it in GitHub Desktop.
// Activate WordPress Maintenance Mode
function wp_maintenance_mode(){
if(!current_user_can('edit_themes') || !is_user_logged_in()){
wp_die('<h1 style="color:red">Website under Maintenance</h1><br />We are performing scheduled maintenance. We will be back online shortly!');
}
}
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