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 →
BestWP PRO WordPress Theme

BestWP PRO

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

$25.00
MintWP PRO WordPress Theme

MintWP PRO

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

$25.00
GridBone PRO WordPress Theme

GridBone PRO

$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
GridLane PRO WordPress Theme

GridLane PRO

If you like the free version of GridLane WordPress Theme, you'll love the premium version even more. It will help...

$25.00
MagShow PRO WordPress Theme

MagShow PRO

MagShow PRO is the premium version of MagShow free WordPress Theme with more advanced features. MagShow PRO version has 160+...

$25.00
Simple Grid PRO WordPress Theme

Simple Grid PRO

You'll be pleased with the Simple Grid PRO WordPress theme if you have tried the free version. It is a...

$25.00
NeatMag PRO WordPress Theme

NeatMag PRO

Do you like the NeatMag Free WordPress Theme?, Then you will love the premium version. NeatMag PRO is very user...

$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 56 WordPress themes.