Automattic\WooCommerce\Admin\Features\ProductBlockEditor
RedirectionController::is_legacy_add_new_screen
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() RedirectionController::is legacy add new screen WC 10.5.0
protected function is_legacy_add_new_screen(): bool {
$screen = get_current_screen();
return 'post' === $screen->base && 'product' === $screen->post_type && 'add' === $screen->action;
}