Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. // Dev Vip is in the house making a few edits
  2. // Activate WordPress Maintenance Mode
  3.  
  4. function wp_maintenance_mode(){
  5. if(!current_user_can('edit_themes') || !is_user_logged_in()){
  6. wp_die('<h1 style="color:blue">We'll be Back in 5 <br /> Thanks ');
  7. }
  8. }
  9. add_action('get_header', 'wp_maintenance_mode');
  10.  
  11. // wrap it back up when your done using /* before and */ after
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement