WP_Recovery_Mode::exit_recovery_mode()

Ends the current recovery mode session.


Description Description


Return Return

(bool) True on success, false on failure.


Top ↑

Source Source

File: wp-includes/class-wp-recovery-mode.php

	public function exit_recovery_mode() {
		if ( ! $this->is_active() ) {
			return false;
		}

		$this->email_service->clear_rate_limit();
		$this->cookie_service->clear_cookie();

		wp_paused_plugins()->delete_all();
		wp_paused_themes()->delete_all();

		return true;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
5.2.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.