WordPress开启维护模式:站点临时关闭

Posted by: Fengjiajun Comments: 0

WordPress开启维护模式:站点临时关闭

function cus_wp_maintenance_mode(){
    if(!current_user_can('edit_themes') || !is_user_logged_in()){
        wp_die('站点维护中,请稍候访问!');
    }
}
add_action('get_header', 'cus_wp_maintenance_mode');