Skip to content

Instantly share code, notes, and snippets.

@abdullahkitr0
Created July 26, 2021 22:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abdullahkitr0/2e8685a14cf69ce8f1e9079ba52e08a4 to your computer and use it in GitHub Desktop.
Save abdullahkitr0/2e8685a14cf69ce8f1e9079ba52e08a4 to your computer and use it in GitHub Desktop.
// Activate WordPress Maintenance Mode
function wp_maintenance_mode() {
if (!current_user_can('edit_themes') || !is_user_logged_in()) {
wp_die('<h1>Under Maintenance</h1><br />Website under planned maintenance. Please check back later.');
}
}
add_action('get_header', 'wp_maintenance_mode');
@abdullahkitr0
Copy link
Author

En Popüler WordPress Bakım Modu Eklentileri bu bakım modu eklentileri sayesinde sitenizi bakım moduna hızlı ve güzel bir şekilde alabileceksiniz.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment