Skip to content

Instantly share code, notes, and snippets.

@maxbeizer
Created December 10, 2012 20:36
Show Gist options
  • Save maxbeizer/4253185 to your computer and use it in GitHub Desktop.
Save maxbeizer/4253185 to your computer and use it in GitHub Desktop.
wp down for maintenance
// blog is down for maintenance code
// MUST BE REMOVED!
function cwc_maintenance_mode() {
if ( !current_user_can( 'edit_themes' ) || !is_user_logged_in() ) {
wp_die('Site is in progress; please come back soon.');
}
}
add_action('get_header', 'cwc_maintenance_mode');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment