🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
``` 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'); ```