wpseek.com
A WordPress-centric search engine for devs and theme authors
wp_maintenance is private and should not be used in themes or plugins directly.
wp_maintenance › WordPress Function
Since3.0.0
Deprecatedn/a
› wp_maintenance ( No parameters )
Access: |
|
Defined at: |
|
Codex: |
Dies 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).Related Functions: wp_is_maintenance_mode, maintenance_nag, wp_create_nonce, wp_explain_nonce, wp_basename
Source
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 ); }