Skip to content

Instantly share code, notes, and snippets.

@EastSideCode
Created December 5, 2017 13:30
Show Gist options
  • Select an option

  • Save EastSideCode/3c57c522be998eb5e2562711276e1895 to your computer and use it in GitHub Desktop.

Select an option

Save EastSideCode/3c57c522be998eb5e2562711276e1895 to your computer and use it in GitHub Desktop.
Put WordPress site into maintenance mode
// Put site into maintenance mode
function eastsideCode_maintenance_mode(){
if(!current_user_can('edit_themes') || !is_user_logged_in()){
wp_die('<h1 style="color:purple">Website under Maintenance</h1><br />We are performing scheduled maintenance, and will be back online shortly. If you think you've received this notice in error, please contact your website administrator. Thanks!');
}
}
add_action('get_header', 'eastsideCode_maintenance_mode');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment