Skip to content

Instantly share code, notes, and snippets.

@odil-io
Created October 14, 2019 09:25
Show Gist options
  • Save odil-io/61caee49a2105455f608e8b549ef6d8b to your computer and use it in GitHub Desktop.
Save odil-io/61caee49a2105455f608e8b549ef6d8b to your computer and use it in GitHub Desktop.
Very simple maintenance mode for WordPress
<?php
function maintenance_mode() {
if ( !current_user_can( 'administrator' ) ) {
wp_die('<div style="text-align:center;"><img src="'.get_stylesheet_directory_uri().'/logo.png" width="180"/><p>Binnenkort is deze website online.</p></div>');
}
}
add_action('get_header', 'maintenance_mode');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment