Skip to main content
Login Join
Snippet · PHP

Maintenance Mode for Visitors

Shared by Darshit Rajyaguru · May 19, 2026 · @template_redirect

28 views
1 upvote
Back to Snippets

Shows maintenance message to visitors.

function dr_maintenance_mode() {
    if ( ! current_user_can( 'administrator' ) ) {
        wp_die(
            '<h1>Website Under Maintenance</h1><p>Please check back later.</p>'
        );
    }
}
add_action( 'template_redirect', 'dr_maintenance_mode' );
Know a different way to do this? Add your approach as a variation so folks can compare them side by side.
Submit a variation

0 comments