Answers for "wordpress site maintenance mode"

0

function wp_maintenance_mode() { 763

// Activate WordPress Maintenance Mode
function wp_maintenance_mode(){
    if(!current_user_can('edit_themes') || !is_user_logged_in()){
        wp_die('<h1 style="color:red">Website under Maintenance</h1><br />We are performing scheduled maintenance. We will be back on-line shortly!');
    }
}
add_action('get_header', 'wp_maintenance_mode');
Posted by: Guest on April-23-2020
0

wordpress site maintenance mode

SeedProd plugin : https://www.seedprod.com/
Posted by: Guest on January-19-2021

Browse Popular Code Answers by Language