Skip to content

Instantly share code, notes, and snippets.

@q0821
Created September 5, 2023 07:10
Show Gist options
  • Select an option

  • Save q0821/58a1d35e7ce13116da5e72d687946382 to your computer and use it in GitHub Desktop.

Select an option

Save q0821/58a1d35e7ce13116da5e72d687946382 to your computer and use it in GitHub Desktop.
function wp_maintenance_mode() {
if (!current_user_can('edit_themes') || !is_user_logged_in()) {
wp_die('<h1>網站維護中</h1><br />網站維護中,請稍後再來,要停止維護模式請洽網站維護人員。');
}
}
add_action('get_header', 'wp_maintenance_mode');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment