Guest User

Untitled

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