修改当前 WordPress 主题文件 functions.php
,在该文件中添加如下内容:
function maintenance_mode()
{
if ( !current_user_can( 'edit_themes' ) || !is_user_logged_in() ) {wp_die('<center><img src="你的图片地址" height="300" width="300"><h1>站点维护中,请稍后再来.</h1><p>试着放下手中的工作,喝杯咖啡,过一会儿再来看看。<p></center>');}
}
add_action('get_header', 'maintenance_mode');
如需退出维护模式,删除当前主题 functions.php
文件中刚刚添加的代码即可。
0