Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. add_action('wp_loaded', function() {
  2. global $pagenow;
  3. if(
  4. defined('IN_MAINTENANCE')
  5. && IN_MAINTENANCE
  6. && $pagenow !== 'wp-login.php'
  7. && ! is_user_logged_in()
  8. ) {
  9. header('HTTP/1.1 Service Unavailable', true, 503);
  10. header('Content-Type: text/html; charset=utf-8');
  11. if ( file_exists(WP_CONTENT_DIR . '/maintenance.php') ) {
  12. require_once( WP_CONTENT_DIR . '/maintenance.php' );
  13. }
  14. die();
  15. }
  16. });
  17.  
  18. define('IN_MAINTENANCE', true);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement