有没有办法从主题文件夹添加自定义维护页面?
我有激活维护模式的代码,但我无法获得样式。。
function activate_maintenance_mode() {
if ( !(current_user_can( \'administrator\' ) || current_user_can( \'super admin\' ))) {
wp_die(
\'<h1>Website Under Maintenance</h1><p>Hi, our Website is currently undergoing scheduled maintenance.
Please check back very soon.<br /><strong>Sorry for the inconvenience!</strong></p>\', \'Maintenance Mode\');
}
}
add_action(\'get_header\', \'activate_maintenance_mode\');
提前谢谢你,尼古拉。