• Frankzappafication

    (@frankzappafication)


    I am looking how to have a whole site under construction apart from 1 page? Is this possible?

    thanks for your help

Viewing 1 replies (of 1 total)
  • mdshak

    (@mdshak)

    Hi,
    Sure, everything is possible in this WordPress World. Just paste the following code in functions.php of child theme.

    If you dont have child theme then create using this plugin easily https://wordpress.org/plugins/one-click-child-theme/.

    function md_maintenance_mode() {
    if ( ! current_user_can( 'edit_themes' ) || ! is_user_logged_in() ) {
    $static_page_URL = 'http://www.examplecom'; // Must Change it
    wp_redirect( $static_page_URL );
    exit;
    }
    }
    add_action( 'get_header', 'md_maintenance_mode' );

    Thanks
    Mohammad

Viewing 1 replies (of 1 total)
  • The topic ‘under construction all but 1 page’ is closed to new replies.