Home / Admin / Website Unavailable
Duplicate Snippet

Embed Snippet on Your Site

Website Unavailable

Used when client is not current with payments or has moved their site.

Code Preview
php
<?php
add_action( 'init', function() {
	if ( ! current_user_can( 'manage_options' ) && ! is_admin() && ! is_login() ) {
		wp_die( '<h1>Website Unavailable</h1><p>This version of the website is no longer active. The owner has moved the site to a new server. If you are looking for the latest version, please check back later or contact the site owner.</p>' );
	}
} );

Comments

Add a Comment