LoginSignup
9

More than 5 years have passed since last update.

WordPress: メンテナンスモード【functions.php】

Last updated at Posted at 2013-09-25
functions.php
/**
 * メンテナンスモード
 */
add_action('get_header', 'wp_maintenance_mode');

function wp_maintenance_mode()
{
  if (!current_user_can('edit_themes') || !is_user_logged_in())
  {
    wp_die('<h1>ただいまメンテナンス中です。</h1>');
  }
}

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9