Created
December 10, 2012 20:36
-
-
Save maxbeizer/4253185 to your computer and use it in GitHub Desktop.
wp down for maintenance
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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