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>');
}
}
Go to list of users who liked
More than 5 years have passed since last update.
/**
* メンテナンスモード
*/
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
Go to list of users who liked