Pages rendered with React and pages that include the WooCommerce Admin header (containing the Activity Panel) need to be registered with the WooCommerce Admin Page Controller.
-`id` - Identifies the page with the controller. Required.
-`parent` - Denotes the page as a child of `parent`. Used for breadcrumbs. Optional.
-`screen_id` - Corresponds to [`PageController::get_current_screen_id()`](../includes/page-controller/class-wc-admin-page-controller.php#L219) to determine the current page. Required.
-`title` - Page title. Used to build breadcrumbs. String or array of breadcrumb pieces. Required.
-`path` - Page path (relative). Used for linking breadcrumb pieces when this page is a `parent`. Optional.
The `WooCommerce > Settings > General` example shows how to set up multiple breadcrumb pieces for a page. When building the breadcrumbs, WooCommerce will attach a link to `path` to the first piece in the `title` array. All subsequent pieces are plain text (not linked).
WooCommerce Admin can recognize WooCommerce pages that have both tabs and sub sections. For example, `woocommerce_page_wc-settings-products-inventory` is the `WooCommerce > Settings > Products > Inventory` page.
If your plugin adds new pages with tabs and sub sections, use the `wc_admin_pages_with_tabs` and `wc_admin_page_tab_sections` filters to have WooCommerce Admin generate accurate screen IDs for them.
You can also use the `wc_admin_current_screen_id` filter to make any changes necessary to the behavior.
### Registering a React-powered Page
Registering a React-powered page is similar to connecting a PHP page, but with some key differences. Registering pages will automatically create WordPress menu items for them, with the appropriate hierarchy based on `parent`.
Register pages with `wc_admin_register_page()` using these parameters:
-`id` - Identifies the page with the controller. Required.
-`parent` - Denotes the page as a child of `parent`. Used for breadcrumbs. Optional.
-`title` - Page title. Used to build breadcrumbs. String or array of breadcrumb pieces. Required.
-`path` - Page path (relative to `#wc-admin`). Used for identifying this page and for linking breadcrumb pieces when this page is a `parent`. Required.
-`capability` - User capability needed to access this page. Optional (defaults to `manage_options`).
-`icon` - Dashicons helper class or base64-encoded SVG. Include the entire dashicon class name, ie `dashicons-*`. This is optional and won't be included in WC Navigation.
-`position` - Menu item position for parent pages. Optional. See: `add_menu_page()`.
-`nav_args` - Arguments for registering items in WooCommerce Navigation.
-`nav_args[ 'order' ]` - Order number for presentation.
-`nav_args[ 'parent' ]`- Menu for item to fall under.`woocommerce`,`woocommerce-settings`,`woocommerce-analytics`, or another category added by an extension are available.