Skip to content

Instantly share code, notes, and snippets.

View pxpxpx-code's full-sized avatar

pxMEDIA.de GmbH Werbeagentur pxpxpx-code

View GitHub Profile
@pxpxpx-code
pxpxpx-code / functions.php
Created April 17, 2020 13:56
WordPress Wartungsmodus aktivieren
// 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');