Code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function wpr_maintenance_mode() { | |
if ( !current_user_can( 'edit_themes' ) || !is_user_logged_in() ) { | |
wp_die('ただいまメンテナンス中です。暫くお待ち下さい。'); | |
} | |
} | |
add_action('get_header', 'wpr_maintenance_mode'); | |
?> |
Screen shot
Note
Description | functions.phpでwp_dieを使う。ログインすると普通に見れる。 |
---|---|
WordPress Ver. | 3.3.1 |
Via | Quick maintenance mode |