WP_Recovery_Mode::is_active

Advertisement

Summery Summery

Checks whether recovery mode is active.

Syntax Syntax

WP_Recovery_Mode::is_active()

Description Description

This will not change after recovery mode has been initialized. WP_Recovery_Mode::run().

Return Return

(bool) True if recovery mode is active, false otherwise.

Source Source

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

	public function is_active() {
		return $this->is_active;
	}

Advertisement

Changelog Changelog

Changelog
Version Description
5.2.0 Introduced.

Advertisement

Leave a Reply