Created
September 5, 2023 07:10
-
-
Save q0821/58a1d35e7ce13116da5e72d687946382 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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