Created
August 5, 2016 21:11
-
-
Save yasircs4/6ba9ed5d3b1cd7ba1d60f3ee83a6bd9a 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 activate_maintenance_mode() { | |
if ( !(current_user_can( 'administrator' ) || current_user_can( 'super admin' ))) { | |
wp_die('<h1> Sorry Site Closed </h1> | |
<p>Hello، | |
Site Under maintenance. | |
Come back after a few minutes. | |
<br /> | |
<strong> | |
Thank you for your understanding | |
! | |
</strong> | |
</p>', 'Sorry Site Closed'); | |
} | |
} | |
add_action('get_header', 'activate_maintenance_mode'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment