Skip to content

Instantly share code, notes, and snippets.

@yasircs4
Created August 5, 2016 21:11
Show Gist options
  • Save yasircs4/6ba9ed5d3b1cd7ba1d60f3ee83a6bd9a to your computer and use it in GitHub Desktop.
Save yasircs4/6ba9ed5d3b1cd7ba1d60f3ee83a6bd9a to your computer and use it in GitHub Desktop.
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