WooCommerce : Add New Page and Link it to WordPress > Products.

Code

WooCommerce : Add New Page and Link it to WordPress > Products.

How to add a submenu item to the WooCommerce “Products” admin menu?

For Adding a submenu to any admin menu we will use “add_submenu_page” function.

add_submenu_page( string $parent_slug, string $page_title, string $menu_title, string $capability, string $menu_slug, callable $function = '', int $position = null )

Parameter Description

$parent_slug
(string) (Required) The slug name for the parent menu (or the file name of a standard WordPress admin page).

$page_title
(string) (Required) The text to be displayed in the title tags of the page when the menu is selected.

$menu_title
(string) (Required) The text to be used for the menu.

$capability
(string) (Required) The capability required for this menu to be displayed to the user.

$menu_slug
(string) (Required) The slug name to refer to this menu by. Should be unique for this menu and only include lowercase alphanumeric, dashes, and underscores characters to be compatible with sanitize_key().

$function
(callable) (Optional) The function to be called to output the content for this page.
Default value: ”

$position
(int) (Optional) The position in the menu order this item should appear.
Default value: null

Documentation

So We must know the $parent_slug for adding submenu. for adding submenu to p-roduct menu in admin screen we must know the parent slug of product menu.

We can add a submenu item to the “WooCommerce” menu using “add_submenu_page” and ‘woocommerce’ for $parent_slug (using ‘admin_menu’ hook), but for Products menu ‘woocommerce’ $parent_slug can’t be used.

For adding submenu to Woocomerce product menu we have to use ‘edit.php?post_type=product’ as parent slug.

For example:

function ProductsSubPage() {
  add_submenu_page('edit.php?post_type=product','Custom Page Title','New Custom Title','edit_products','new_page_slug','ProductsSubPageCallback', 99 );
}
function  ProductsSubPageCallback() {
  echo '<div class="wrap"><h1 class="">New Custom Title</h1>';
  // add Content here
  echo '</div>';
}
add_action('admin_menu','ProductsSubPage',99);

//output
null

Enjoy

Shiv kumawat

Executive Director & CEO

"Shiv kumawat is the Executive Director and CEO of Eoxys It Solution LLP and the strategic mind behind the company"s growth. His expertise in operational efficiency and team leadership empowers his colleagues to excel and innovate.”

Latest Posts

Seeds of Innovation: How AI is Redefining American Agriculture in 2025

  Seeds of Innovation: How AI is Redefining American Agriculture in 2025 Planting the Future with Artificial Intelligence In 2025,…

Shafeeq Khan
September 11, 2025

Building the Future: AI Innovations and Essential Features for Healthcare Apps in 2025

  Building the Future: AI Innovations and Essential Features for Healthcare Apps in 2025 The Dawn of Intelligent Health Apps…

Shafeeq Khan
September 10, 2025

When Machines Heal: Exploring the New Frontier of AI in Mental Health Care

  When Machines Heal: Exploring the New Frontier of AI in Mental Health Care Technology Steps Into Compassion In the…

Shafeeq Khan
September 9, 2025
, ,

Leave a Reply

Your email address will not be published. Required fields are marked *