10
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

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>');
  }
}
10
9
0

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
10
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?