Is there a “Maintenance Mode” plugin that lets me choose one of my pages?

[ad_1]

All the ones that I´ve tried forces me to use their page own page builder. Thanks!

(What I need by Maintenance mode is to all users except me gets redirected to a specific page)

[ad_2]
1 Comment
  1. function redirect_to_under_construction() {
    $under_construction_page_id = 8;

    if (!is_user_logged_in() && !is_page($under_construction_page_id)) {
    wp_redirect(get_permalink($under_construction_page_id));
    exit;
    }
    }
    add_action(‘template_redirect’, ‘redirect_to_under_construction’);

    Not a plugin but if you’re comfortable adding this to your theme’s functions.php.

    I’m sure someone else has a better way.

 

This site will teach you how to build a WordPress website for beginners. We will cover everything from installing WordPress to adding pages, posts, and images to your site. You will learn how to customize your site with themes and plugins, as well as how to market your site online.

Buy WordPress Transfer