wp_is_recovery_mode()WP 5.2.0

Determines whether WordPress is in Recovery Mode.

In this mode, plugins or themes that cause WSODs will be paused.

Хуков нет.

Возвращает

true|false.

Использование

wp_is_recovery_mode();

Список изменений

С версии 5.2.0 Введена.

Код wp_is_recovery_mode() WP 6.5.2

function wp_is_recovery_mode() {
	return wp_recovery_mode()->is_active();
}