Automattic\WooCommerce\Admin\Features\ProductBlockEditor

RedirectionController::is_legacy_add_new_screen()protectedWC 1.0

Check if the current screen is the legacy add product screen.

Метод класса: RedirectionController{}

Хуков нет.

Возвращает

null. Ничего (null).

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

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->is_legacy_add_new_screen(): bool;

Код RedirectionController::is_legacy_add_new_screen() WC 9.7.1

protected function is_legacy_add_new_screen(): bool {
	$screen = get_current_screen();
	return 'post' === $screen->base && 'product' === $screen->post_type && 'add' === $screen->action;
}