inovve

Wordpress maintenance mode

Dec 20th, 2022 (edited)
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. function maintenance_mode() {
  2.  
  3. if ( !current_user_can( 'edit_themes' ) || !is_user_logged_in() ) {wp_die('Maintenance undergoing...');}
  4.  
  5. }
  6.  
  7. add_action('get_header', 'maintenance_mode');
Advertisement
Add Comment
Please, Sign In to add comment