How to Enable Maintenance Mode in WordPress

When performing updates or changes to your WordPress site, it's essential to inform visitors that the site is temporarily unavailable. While many plugins can handle this, you can manually enable maintenance mode by adding a custom PHP snippet to your theme. This allows for greater control and flexibility.

The following code can be added to your theme's functions.php file to enable maintenance mode for non-admin users, while still allowing administrators and critical processes (like AJAX requests, cron jobs, and REST API calls) to function normally.

function themesdna_maintenance_mode() {
    // Allow access for admins and specific non-front-end requests
    if ( current_user_can( 'manage_options' ) || is_admin() || wp_doing_ajax() || wp_doing_cron() || defined( 'REST_REQUEST' ) && REST_REQUEST ) {
        return; // Allow access for admin, AJAX, CRON, or REST requests
    }

    // Maintenance mode message
    $maintenance_message = '<h1>Maintenance Mode</h1><p>We are performing scheduled maintenance. Please check back soon.</p>';

    // Output the maintenance mode message for non-admin users
    wp_die( $maintenance_message, 'Maintenance Mode', array( 'response' => 503 ) );
}

// Enable Maintenance Mode for non-admin users
add_action( 'template_redirect', 'themesdna_maintenance_mode' );

By using this code, you can control exactly who sees the maintenance page and ensure your site remains operational behind the scenes while you perform updates.

Our WordPress Themes

Below are some of our premium WordPress themes. View all our free and premium WordPress themes →
MaxWP PRO WordPress Theme

MaxWP PRO

If you like MaxWP free WordPress Theme, you will love the premium version. MaxWP PRO is feature-rich, easy to use,...

$25.00
BoldWP PRO WordPress Theme

BoldWP PRO

If you have tried BoldWP Free WordPress Theme, then you will love the premium version. BoldWP PRO is an more...

$25.00
GridView PRO WordPress Theme

GridView PRO

GridView PRO is fully responsive, feature-rich, accessibility improved, more advanced version of its free version. GridView PRO WordPress theme has...

$25.00
PrimeWP PRO WordPress Theme

PrimeWP PRO

If you like PrimeWP Free WordPress Theme?, Then you will love the premium version. PrimeWP PRO is an more improved...

$25.00
GridMe PRO WordPress Theme

GridMe PRO

If you have tried GridMe Free WordPress Theme, then you will love the premium version. It will help you to...

$25.00
CoolWP PRO WordPress Theme

CoolWP PRO

If you like CoolWP free WordPress Theme, you will love the premium version. CoolWP PRO is very user friendly, feature-rich,...

$25.00
GridMag PRO WordPress Theme

GridMag PRO

If you like GridMag free WordPress Theme, you will love the premium version. GridMag PRO is an improved version of...

$25.00
GridPal PRO WordPress Theme

GridPal PRO

If you like the GridPal Free WordPress Theme, then you will love the premium version. GridPal PRO version has color...

$25.00

Can't you choose a single theme? Purchase All Themes for $75.

Save money with our low, one-time price for access to all of our 55 WordPress themes.