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
// Activate WordPress Maintenance Mode | |
function wp_maintenance_mode(){ | |
if(!current_user_can('edit_themes') || !is_user_logged_in()){ | |
wp_die('<h1 style="color:red">Wartungsmodus</h1><br />Diese Webseite wird momentan gewartet. Wir sind in Kürze wieder erreichbar!'); | |
} | |
} | |
add_action('get_header', 'wp_maintenance_mode'); |