Created
December 5, 2017 13:30
-
-
Save EastSideCode/3c57c522be998eb5e2562711276e1895 to your computer and use it in GitHub Desktop.
Put WordPress site into maintenance mode
This file contains hidden or 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
| // 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