当你的wordpress网站需要进行临时维护的时候,你可以直接让网站挂机,但是这样对用户并不友好,你也可以告诉浏览者维护的时间,让他们什么时候再次访问···
function wp_maintenance_mode(){
if(!current_user_can('edit_themes') || !is_user_logged_in()){
wp_die('网站维护中···', 'Maintenance - Could you please not disturb me ', array('response' => '503'));
}
}
add_action('get_header', 'wp_maintenance_mode');
wp_die(‘网站维护中···此文字随意修改···复制代码至functions即可生效!