Skip to content

Instantly share code, notes, and snippets.

@amielucha
Created April 4, 2018 15:02
Show Gist options
  • Select an option

  • Save amielucha/aad16d8783445d799529a84afb7a4c7c to your computer and use it in GitHub Desktop.

Select an option

Save amielucha/aad16d8783445d799529a84afb7a4c7c to your computer and use it in GitHub Desktop.
WordPress maintenance mode snippet
<?php
/*
* Temporarily block access to the WordPress site.
*/
function my_little_maintenace_mode() {
if ( !current_user_can( 'administrator' ) ) wp_die('Please <a href="' . wp_login_url() . '">log in</a> first.');
}
add_action('get_header', 'my_little_maintenace_mode');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment