When you are doing some serious maintenance work on your WordPress blog, you should make sure your visitors and readers don’t see that. Because it will be a mess right? If you hate plugins like me, then I have a simple tip for Quick Maintenance Mode.
Paste the following code on your functions.php file and save it. After completing your work, don’t forget to remove the code, or else it will display the same maintenance message to your visitors.
Feel free to customize the sentence “Maintenance, please come back soon.” and don’t edit any other code unless you know what you are doing, if you ask me I won’t touch it.
function wpr_maintenance_mode() {
if ( !current_user_can( ‘edit_themes’ ) || !is_user_logged_in() ) {
wp_die(‘Maintenance, please come back soon.’);
}
}
add_action(‘get_header’, ‘wpr_maintenance_mode’);
Thanks Skyje for this code.
Perfect solution for what i was looking for, THANX ๐
good one dude, i hope i would learn this coding like u ๐
Thank you so much for your post on here ๐ informative post Pradeep ๐
Good tip. When I can see this message in action on HBB? Haha…
Oh, by the way, your blog has been awarded PR4 again. Congrats. ๐
Thanks for this post, and for the skyje link, it's really helpful ๐
Thanks for the tips dude ๐
I often tweak my WordPress themes or layout so this tip comes in very handy for me. Thanks for sharing.
Wow, Really a very useful tool. Even I hate those Plugins. I think of doing something by myself. Searcg Google, end up in getting a Plug-In.. Really, frustating..
It cool . will keep this post handy. thanks for sharing
Why do u hate plugins man? they are like lifelines for WP and the main thing that makes the use of WP infinite….
@SHAWN, excess plugins makes site load time more, hence affects the PR , and seo.
so instead of plugins,we should use code whereever possible
@SHAWN, excess plugins makes site load time more, hence affects the PR , and seo.
so instead of plugins,we should use code wherever possible
plugin consumes server resources while self coding doesn't ๐
because plugins slow down the site. Code works better.