Advertisement
aouwalcmc

WordPress tip: Quick maintenance mode

May 14th, 2018
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. function wpr_maintenance_mode() {
  2. if ( !current_user_can( 'edit_themes' ) || !is_user_logged_in() ) {
  3. wp_die('Maintenance, please come back soon.');
  4. }
  5. }
  6. add_action('get_header', 'wpr_maintenance_mode');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement