{"id":377,"date":"2024-04-23T17:36:08","date_gmt":"2024-04-23T12:06:08","guid":{"rendered":"https:\/\/velanapps.com\/blog\/?p=377"},"modified":"2024-11-20T15:40:53","modified_gmt":"2024-11-20T10:10:53","slug":"creating-a-custom-menu-item-in-magento-2-admin-panel","status":"publish","type":"post","link":"https:\/\/velanapps.com\/blog\/creating-a-custom-menu-item-in-magento-2-admin-panel\/","title":{"rendered":"How to Create a Custom Menu Item in the Magento 2 Admin Panel?"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">This is the first post in a series of tutorial posts wherein we\u2019ll teach you to create a custom menu item in the Magento 2 admin panel \u2013 quick and easy!<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Without further wait, let\u2019s delve into the concepts of creating menu items in the admin panel. The scope of this post is to create Admin Panel Menu items. The controllers and action will be covered in the upcoming tutorials. So stay tuned \ud83d\ude09 we\u2019ll be putting up those links right here!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">In this tutorial, you\u2019ll create a create a custom menu item in the Magento 2 admin panel that looks like this:<\/h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"358\" height=\"450\" src=\"https:\/\/velanapps.com\/blog\/wp-content\/uploads\/2024\/04\/velanapps_magento2_admin_menu_tutorial.png\" alt=\"\" class=\"wp-image-378\" srcset=\"https:\/\/velanapps.com\/blog\/wp-content\/uploads\/2024\/04\/velanapps_magento2_admin_menu_tutorial.png 358w, https:\/\/velanapps.com\/blog\/wp-content\/uploads\/2024\/04\/velanapps_magento2_admin_menu_tutorial-239x300.png 239w\" sizes=\"auto, (max-width: 358px) 100vw, 358px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Here\u2019s How we did it<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Kick-start a new Magento 2 module with the following files:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Path: app\/code\/Velanapps\/Testing\/registration.php\n&lt;?php\n\\Magento\\Framework\\Component\\ComponentRegistrar::register( \\Magento\\Framework\\Component\\ComponentRegistrar::MODULE,\n'Velanapps_Testing',\n__DIR__ );<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>Path: app\/code\/Velanapps\/Testing\/etc\/module.xml\n&lt;?xml version=\"1.0\"?&gt;\n&lt;config xmlns:xsi=http:\/\/www.w3.org\/2001\/XMLSchema-instance xsi:noNamespaceSchemaLocation=\"..\/..\/..\/..\/..\/lib\/internal\/Magento\/Framework\/Module\/etc\/module.xsd\"&gt;\n &lt;module name=\"Velanapps_Testing'\" setup_version=\"1.0.0\"&gt;\n &lt;\/module&gt;\n&lt;\/config&gt;<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Now that we have our modules created. Let\u2019s create our menu.xml file where we\u2019ll be specifying the menu items that are required for our module:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Path: app\/code\/Velanapps\/Testing\/etc\/adminhtml\/menu.xml\n&lt;?xml version=\"1.0\"?&gt;\n&lt;config xmlns:xsi=http:\/\/www.w3.org\/2001\/XMLSchema-instance xsi:noNamespaceSchemaLocation=\"..\/..\/..\/Backend\/etc\/menu.xsd\"&gt;\n &lt;menu&gt;\n&lt;add id=\"Velanapps_Testing::velanapps\" title=\"VelanApps\" module=\"Velanapps_Testing\" sortOrder=\"30\" resource=\"Velanapps_Testing::velanapps\"\/&gt;\n&lt;add id=\"Velanapps_Testing::testing_group\" title=\"Velanapps Group\" module=\"Velanapps_Testing\" sortOrder=\"10\" parent=\"Velanapps_Testing::velanapps\" resource=\"Velanapps_Testing::testing_group\"\/&gt;\n&lt;add id=\"Velanapps_Testing::testing_menu1\" title=\"Testing Menu 1\" module=\"Velanapps_Testing\" sortOrder=\"10\" parent=\"Velanapps_Testing::testing_group\" action=\"front_name\/controller\/action1\" resource=\"Velanapps_Testing::testing_menu1\"\/&gt;\n&lt;add id=\"Velanapps_Testing::testing_menu2\" title=\"Testing Menu 2\" module=\"Velanapps_Testing\" sortOrder=\"10\" parent=\"Velanapps_Testing::testing_group\" action=\"front_name\/controller\/action1\" resource=\"Velanapps_Testing::testing_menu2\"\/&gt;\n &lt;\/menu&gt;\n&lt;\/config&gt;<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Note how \u201cresource\u201d from the top-level menu item becomes the parent value for the next level menu item. While using this code, make sure you replace the action attribute with the controller and action that needs to be opened when these menu items are clicked (or wait for our second post).<\/p>\n\n\n\n<div class=\"wp-block-columns call-to-left-action is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:66.66%\">\n<p class=\"wp-block-paragraph\"><strong>Are You Ready To Start Your eCommerce Website development Journey With Our Magento Developers?<\/strong><\/p>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.33%\">\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-fe48e5de wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/velanapps.com\/hire-magento-developers\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Let\u2019s get started<\/strong><\/a><\/div>\n<\/div>\n<\/div>\n<\/div>\n\n\n\n<h3 class=\"wp-block-heading\">In our example, we have 3 primary nodes:<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The first one being the Parent menu item and the last one being the Menu Items themselves (Testing Menu 1 and Testing Menu)<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Our second node, is \u201cVelanApps Group\u201d, which is used to group the last-level menu items. You can have multiple groups in a single menu (you already knew that). Now, you know a simple way to create menus in Magento 2. Watch out for our step 2 tutorial wherein we\u2019ll teach you about controllers and actions.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Did you try this? Did it work for you? Let us know in the comments. If you\u2019re a developer experimenting with Magento 2 and this didn\u2019t work for you, don\u2019t sweat because we\u2019d be glad to help you out!<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">That apart, if you\u2019re trying to create your own Magento website and are trying to learn how to create menus in Magento 2, we don\u2019t want to discourage you, but keep in mind that <a href=\"https:\/\/velanapps.com\/hire-magento-developers\">Magento experts<\/a> help is just a click away. Just letting you know that we can handle this for you while you go sell! You play the game and we\u2019ll set the field. <a href=\"https:\/\/velanapps.com\/contact-us\">Contact Us<\/a> or Call us @ +1 516 717 2049.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This is the first post in a series of tutorial posts wherein we\u2019ll teach you to create a custom menu item in the Magento 2 admin panel \u2013 quick and easy! Without further wait, let\u2019s delve into the concepts of creating menu items in the admin panel. The scope of this post is to create [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":664,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[19],"tags":[],"class_list":["post-377","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-magento"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Create a Custom Menu Item in Magento 2 Admin Panel?<\/title>\n<meta name=\"description\" content=\"Learn how to create a custom menu item in the Magento 2 Admin Panel with our comprehensive guide. Enhance your website&#039;s functionality today.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/velanapps.com\/blog\/creating-a-custom-menu-item-in-magento-2-admin-panel\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Create a Custom Menu Item in Magento 2 Admin Panel?\" \/>\n<meta property=\"og:description\" content=\"Learn how to create a custom menu item in the Magento 2 Admin Panel with our comprehensive guide. Enhance your website&#039;s functionality today.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/velanapps.com\/blog\/creating-a-custom-menu-item-in-magento-2-admin-panel\/\" \/>\n<meta property=\"og:site_name\" content=\"Latest Trends In Information Technology (IT) Blog - VelanApps\" \/>\n<meta property=\"article:published_time\" content=\"2024-04-23T12:06:08+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-20T10:10:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/velanapps.com\/blog\/wp-content\/uploads\/2024\/04\/How-to-create-a-custom-menu-Item-in-the-Magento-2-Admin-Panel.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"430\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"kingsly jebaraj\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"How to Create a Custom Menu Item in Magento 2 Admin Panel?\" \/>\n<meta name=\"twitter:description\" content=\"Learn how to create a custom menu item in the Magento 2 Admin Panel with our comprehensive guide. Enhance your website&#039;s functionality today.\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/velanapps.com\/blog\/wp-content\/uploads\/2024\/04\/How-to-create-a-custom-menu-Item-in-the-Magento-2-Admin-Panel.jpg\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"kingsly jebaraj\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/velanapps.com\\\/blog\\\/creating-a-custom-menu-item-in-magento-2-admin-panel\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/velanapps.com\\\/blog\\\/creating-a-custom-menu-item-in-magento-2-admin-panel\\\/\"},\"author\":{\"name\":\"kingsly jebaraj\",\"@id\":\"https:\\\/\\\/velanapps.com\\\/blog\\\/#\\\/schema\\\/person\\\/301160f2e391f734a4d8b238a1e0edeb\"},\"headline\":\"How to Create a Custom Menu Item in the Magento 2 Admin Panel?\",\"datePublished\":\"2024-04-23T12:06:08+00:00\",\"dateModified\":\"2024-11-20T10:10:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/velanapps.com\\\/blog\\\/creating-a-custom-menu-item-in-magento-2-admin-panel\\\/\"},\"wordCount\":425,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/velanapps.com\\\/blog\\\/creating-a-custom-menu-item-in-magento-2-admin-panel\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/velanapps.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/How-to-create-a-custom-menu-Item-in-the-Magento-2-Admin-Panel.jpg\",\"articleSection\":[\"Magento\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/velanapps.com\\\/blog\\\/creating-a-custom-menu-item-in-magento-2-admin-panel\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/velanapps.com\\\/blog\\\/creating-a-custom-menu-item-in-magento-2-admin-panel\\\/\",\"url\":\"https:\\\/\\\/velanapps.com\\\/blog\\\/creating-a-custom-menu-item-in-magento-2-admin-panel\\\/\",\"name\":\"How to Create a Custom Menu Item in Magento 2 Admin Panel?\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/velanapps.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/velanapps.com\\\/blog\\\/creating-a-custom-menu-item-in-magento-2-admin-panel\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/velanapps.com\\\/blog\\\/creating-a-custom-menu-item-in-magento-2-admin-panel\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/velanapps.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/How-to-create-a-custom-menu-Item-in-the-Magento-2-Admin-Panel.jpg\",\"datePublished\":\"2024-04-23T12:06:08+00:00\",\"dateModified\":\"2024-11-20T10:10:53+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/velanapps.com\\\/blog\\\/#\\\/schema\\\/person\\\/301160f2e391f734a4d8b238a1e0edeb\"},\"description\":\"Learn how to create a custom menu item in the Magento 2 Admin Panel with our comprehensive guide. Enhance your website's functionality today.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/velanapps.com\\\/blog\\\/creating-a-custom-menu-item-in-magento-2-admin-panel\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/velanapps.com\\\/blog\\\/creating-a-custom-menu-item-in-magento-2-admin-panel\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/velanapps.com\\\/blog\\\/creating-a-custom-menu-item-in-magento-2-admin-panel\\\/#primaryimage\",\"url\":\"https:\\\/\\\/velanapps.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/How-to-create-a-custom-menu-Item-in-the-Magento-2-Admin-Panel.jpg\",\"contentUrl\":\"https:\\\/\\\/velanapps.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/How-to-create-a-custom-menu-Item-in-the-Magento-2-Admin-Panel.jpg\",\"width\":750,\"height\":430,\"caption\":\"How to create a custom menu Item in the Magento 2 Admin Panel\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/velanapps.com\\\/blog\\\/creating-a-custom-menu-item-in-magento-2-admin-panel\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/velanapps.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Create a Custom Menu Item in the Magento 2 Admin Panel?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/velanapps.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/velanapps.com\\\/blog\\\/\",\"name\":\"Latest Trends In Information Technology (IT) Blog - VelanApps\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/velanapps.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/velanapps.com\\\/blog\\\/#\\\/schema\\\/person\\\/301160f2e391f734a4d8b238a1e0edeb\",\"name\":\"kingsly jebaraj\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/velanapps.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Kingsly-Jebaraj-96x96.png\",\"url\":\"https:\\\/\\\/velanapps.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Kingsly-Jebaraj-96x96.png\",\"contentUrl\":\"https:\\\/\\\/velanapps.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Kingsly-Jebaraj-96x96.png\",\"caption\":\"kingsly jebaraj\"},\"description\":\"Kingsly heads the transformation services with over 10+ years of experience and proven track record. Successfully delivered high-quality projects while effectively managing cross-functional teams and ensuring timely delivery. Committed to driving innovation, fostering collaboration, and achieving excellence in software development.\",\"url\":\"https:\\\/\\\/velanapps.com\\\/blog\\\/author\\\/kingsly\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Create a Custom Menu Item in Magento 2 Admin Panel?","description":"Learn how to create a custom menu item in the Magento 2 Admin Panel with our comprehensive guide. Enhance your website's functionality today.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/velanapps.com\/blog\/creating-a-custom-menu-item-in-magento-2-admin-panel\/","og_locale":"en_US","og_type":"article","og_title":"How to Create a Custom Menu Item in Magento 2 Admin Panel?","og_description":"Learn how to create a custom menu item in the Magento 2 Admin Panel with our comprehensive guide. Enhance your website's functionality today.","og_url":"https:\/\/velanapps.com\/blog\/creating-a-custom-menu-item-in-magento-2-admin-panel\/","og_site_name":"Latest Trends In Information Technology (IT) Blog - VelanApps","article_published_time":"2024-04-23T12:06:08+00:00","article_modified_time":"2024-11-20T10:10:53+00:00","og_image":[{"width":750,"height":430,"url":"https:\/\/velanapps.com\/blog\/wp-content\/uploads\/2024\/04\/How-to-create-a-custom-menu-Item-in-the-Magento-2-Admin-Panel.jpg","type":"image\/jpeg"}],"author":"kingsly jebaraj","twitter_card":"summary_large_image","twitter_title":"How to Create a Custom Menu Item in Magento 2 Admin Panel?","twitter_description":"Learn how to create a custom menu item in the Magento 2 Admin Panel with our comprehensive guide. Enhance your website's functionality today.","twitter_image":"https:\/\/velanapps.com\/blog\/wp-content\/uploads\/2024\/04\/How-to-create-a-custom-menu-Item-in-the-Magento-2-Admin-Panel.jpg","twitter_misc":{"Written by":"kingsly jebaraj","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/velanapps.com\/blog\/creating-a-custom-menu-item-in-magento-2-admin-panel\/#article","isPartOf":{"@id":"https:\/\/velanapps.com\/blog\/creating-a-custom-menu-item-in-magento-2-admin-panel\/"},"author":{"name":"kingsly jebaraj","@id":"https:\/\/velanapps.com\/blog\/#\/schema\/person\/301160f2e391f734a4d8b238a1e0edeb"},"headline":"How to Create a Custom Menu Item in the Magento 2 Admin Panel?","datePublished":"2024-04-23T12:06:08+00:00","dateModified":"2024-11-20T10:10:53+00:00","mainEntityOfPage":{"@id":"https:\/\/velanapps.com\/blog\/creating-a-custom-menu-item-in-magento-2-admin-panel\/"},"wordCount":425,"commentCount":0,"image":{"@id":"https:\/\/velanapps.com\/blog\/creating-a-custom-menu-item-in-magento-2-admin-panel\/#primaryimage"},"thumbnailUrl":"https:\/\/velanapps.com\/blog\/wp-content\/uploads\/2024\/04\/How-to-create-a-custom-menu-Item-in-the-Magento-2-Admin-Panel.jpg","articleSection":["Magento"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/velanapps.com\/blog\/creating-a-custom-menu-item-in-magento-2-admin-panel\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/velanapps.com\/blog\/creating-a-custom-menu-item-in-magento-2-admin-panel\/","url":"https:\/\/velanapps.com\/blog\/creating-a-custom-menu-item-in-magento-2-admin-panel\/","name":"How to Create a Custom Menu Item in Magento 2 Admin Panel?","isPartOf":{"@id":"https:\/\/velanapps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/velanapps.com\/blog\/creating-a-custom-menu-item-in-magento-2-admin-panel\/#primaryimage"},"image":{"@id":"https:\/\/velanapps.com\/blog\/creating-a-custom-menu-item-in-magento-2-admin-panel\/#primaryimage"},"thumbnailUrl":"https:\/\/velanapps.com\/blog\/wp-content\/uploads\/2024\/04\/How-to-create-a-custom-menu-Item-in-the-Magento-2-Admin-Panel.jpg","datePublished":"2024-04-23T12:06:08+00:00","dateModified":"2024-11-20T10:10:53+00:00","author":{"@id":"https:\/\/velanapps.com\/blog\/#\/schema\/person\/301160f2e391f734a4d8b238a1e0edeb"},"description":"Learn how to create a custom menu item in the Magento 2 Admin Panel with our comprehensive guide. Enhance your website's functionality today.","breadcrumb":{"@id":"https:\/\/velanapps.com\/blog\/creating-a-custom-menu-item-in-magento-2-admin-panel\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/velanapps.com\/blog\/creating-a-custom-menu-item-in-magento-2-admin-panel\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/velanapps.com\/blog\/creating-a-custom-menu-item-in-magento-2-admin-panel\/#primaryimage","url":"https:\/\/velanapps.com\/blog\/wp-content\/uploads\/2024\/04\/How-to-create-a-custom-menu-Item-in-the-Magento-2-Admin-Panel.jpg","contentUrl":"https:\/\/velanapps.com\/blog\/wp-content\/uploads\/2024\/04\/How-to-create-a-custom-menu-Item-in-the-Magento-2-Admin-Panel.jpg","width":750,"height":430,"caption":"How to create a custom menu Item in the Magento 2 Admin Panel"},{"@type":"BreadcrumbList","@id":"https:\/\/velanapps.com\/blog\/creating-a-custom-menu-item-in-magento-2-admin-panel\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/velanapps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Create a Custom Menu Item in the Magento 2 Admin Panel?"}]},{"@type":"WebSite","@id":"https:\/\/velanapps.com\/blog\/#website","url":"https:\/\/velanapps.com\/blog\/","name":"Latest Trends In Information Technology (IT) Blog - VelanApps","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/velanapps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/velanapps.com\/blog\/#\/schema\/person\/301160f2e391f734a4d8b238a1e0edeb","name":"kingsly jebaraj","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/velanapps.com\/blog\/wp-content\/uploads\/2024\/04\/Kingsly-Jebaraj-96x96.png","url":"https:\/\/velanapps.com\/blog\/wp-content\/uploads\/2024\/04\/Kingsly-Jebaraj-96x96.png","contentUrl":"https:\/\/velanapps.com\/blog\/wp-content\/uploads\/2024\/04\/Kingsly-Jebaraj-96x96.png","caption":"kingsly jebaraj"},"description":"Kingsly heads the transformation services with over 10+ years of experience and proven track record. Successfully delivered high-quality projects while effectively managing cross-functional teams and ensuring timely delivery. Committed to driving innovation, fostering collaboration, and achieving excellence in software development.","url":"https:\/\/velanapps.com\/blog\/author\/kingsly\/"}]}},"_links":{"self":[{"href":"https:\/\/velanapps.com\/blog\/wp-json\/wp\/v2\/posts\/377","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/velanapps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/velanapps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/velanapps.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/velanapps.com\/blog\/wp-json\/wp\/v2\/comments?post=377"}],"version-history":[{"count":4,"href":"https:\/\/velanapps.com\/blog\/wp-json\/wp\/v2\/posts\/377\/revisions"}],"predecessor-version":[{"id":952,"href":"https:\/\/velanapps.com\/blog\/wp-json\/wp\/v2\/posts\/377\/revisions\/952"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/velanapps.com\/blog\/wp-json\/wp\/v2\/media\/664"}],"wp:attachment":[{"href":"https:\/\/velanapps.com\/blog\/wp-json\/wp\/v2\/media?parent=377"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/velanapps.com\/blog\/wp-json\/wp\/v2\/categories?post=377"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/velanapps.com\/blog\/wp-json\/wp\/v2\/tags?post=377"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}