Skip to content

Instantly share code, notes, and snippets.

Created June 21, 2016 12:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/888f6e5f8f4ed793204a60138abd2fe2 to your computer and use it in GitHub Desktop.
Save anonymous/888f6e5f8f4ed793204a60138abd2fe2 to your computer and use it in GitHub Desktop.
Beeinflusse den Original-Maintenance Mode von WordPress
<?php
// Aktiviere den WordPress Maintenance Mode
function wp_maintenance_mode(){
if(!current_user_can('edit_themes') || !is_user_logged_in()){
wp_die('<h1 style="color:red">Website im Wartungsmodus</h1><br />Wir müssen mal kurz an der Website schrauben. Bitte habe etwas Geduld, wir sind so schnell wie möglich wieder online.');
}
}
add_action('get_header', 'wp_maintenance_mode');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment