WP_Recovery_Mode::redirect_protected() protected WP 5.2.0
Redirects the current request to allow recovering multiple errors in one go.
The redirection will only happen when on a protected endpoint.
It must be ensured that this method is only called when an error actually occurred and will not occur on the next request again. Otherwise it will create a redirect loop.
{} It's a method of the class: WP_Recovery_Mode{}
No Hooks.
Return
Null. Nothing.
Usage
// protected - for code of main (parent) or child class $result = $this->redirect_protected();
Changelog
Since 5.2.0 | Introduced. |
Code of WP_Recovery_Mode::redirect_protected() WP Recovery Mode::redirect protected WP 5.6
protected function redirect_protected() {
// Pluggable is usually loaded after plugins, so we manually include it here for redirection functionality.
if ( ! function_exists( 'wp_safe_redirect' ) ) {
require_once ABSPATH . WPINC . '/pluggable.php';
}
$scheme = is_ssl() ? 'https://' : 'http://';
$url = "{$scheme}{$_SERVER['HTTP_HOST']}{$_SERVER['REQUEST_URI']}";
wp_safe_redirect( $url );
exit;
}