[ad_1]
[ad_2]
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)
Copyright © 2020 - 2022, Project DMC - WordPress Tutorials for Beginners- All Rights Reserved. Privacy Policy
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.