Skip to content

Instantly share code, notes, and snippets.

@tcmulder
Last active September 25, 2023 22:57
Show Gist options
  • Save tcmulder/5d179feb3cc9a7901be645eb06f3b1a3 to your computer and use it in GitHub Desktop.
Save tcmulder/5d179feb3cc9a7901be645eb06f3b1a3 to your computer and use it in GitHub Desktop.
WordPress Maint. Redirect
<?php
define( 'AQUAMIN_ADMIN_LOCKOUT', true );
add_action( 'admin_init', function() {
if( AQUAMIN_ADMIN_LOCKOUT && ( ! defined( 'DOING_AJAX' ) || ! DOING_AJAX ) ) {
header( 'location: http://www.thinkaquamarine.com/maintenance.html' );
// or use this to redirect internally: wp_safe_redirect( home_url( '/maint.html' ) );
exit;
}
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment