wp_maintenance() – Die with a maintenance message when conditions are met.
You appear to be a bot. Output may be restricted
Description
Die with a maintenance message when conditions are met.
The default message can be replaced by using a drop-in (maintenance.php in the wp-content directory).
Usage
wp_maintenance();
Parameters
Returns
void
Source
File name: wordpress/wp-includes/load.php
Lines:
1 to 22 of 22
function wp_maintenance() { // Return if maintenance mode is disabled. if ( ! wp_is_maintenance_mode() ) { return; } if ( file_exists( WP_CONTENT_DIR . '/maintenance.php' ) ) { require_once WP_CONTENT_DIR . '/maintenance.php'; die(); } require_once ABSPATH . WPINC . '/functions.php'; wp_load_translations_early(); header( 'Retry-After: 600' ); wp_die( __( 'Briefly unavailable for scheduled maintenance. Check back in a minute.' ), __( 'Maintenance' ), 503 ); }