{"id":27469,"date":"2015-06-17T11:49:10","date_gmt":"2015-06-17T11:49:10","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=27469"},"modified":"2026-02-06T13:14:36","modified_gmt":"2026-02-06T13:14:36","slug":"create-admin-menu-and-controller-in-magento2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/create-admin-menu-and-controller-in-magento2\/","title":{"rendered":"How to Create an Admin Menu and Controller in Magento 2"},"content":{"rendered":"\n<p>In this guide, you will learn how to add a custom admin menu and an admin controller in Magento 2.<br>We will cover all steps from configuration to routing and controller implementation.<\/p>\n\n\n\n<p>If you want to learn how to create a module, you can check our blog <a href=\"https:\/\/webkul.com\/blog\/create-hello-module-in-magento2\/\">Create a Module in Magento2<\/a><\/p>\n\n\n<div class=\"wk-index-wrap\">\n<h3 class=\"index-title\">Overview of Admin Menu and Controller<\/h3>\n<\/div>\n<p>Magento 2 uses XML configuration files to define admin menus and URL routing.<br data-start=\"773\" data-end=\"776\" \/>An admin controller processes backend requests and renders the proper admin page.<\/p>\n\n<div class=\"wk-index-wrap\">\n<h3 class=\"index-title\">Step 1: Create the Admin Route<\/h3>\n<\/div>\n<p data-start=\"937\" data-end=\"1089\">Every admin controller needs a route file.<br data-start=\"979\" data-end=\"982\" \/>Create <strong data-start=\"989\" data-end=\"1005\"><code data-start=\"991\" data-end=\"1003\">routes.xml<\/code><\/strong> under <code data-start=\"1012\" data-end=\"1028\">etc\/adminhtml\/<\/code> in your module folder.<\/p>\n<p data-start=\"1091\" data-end=\"1135\">Here\u2019s how the file structure should look:<\/p>\n<p data-start=\"1091\" data-end=\"1135\"><em>app\/code\/Vendor\/Module\/etc\/adminhtml\/routes.xml<\/em><\/p>\n<p data-start=\"1091\" data-end=\"1135\">Use this XML to register your admin route:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">&lt;?xml version=\"1.0\"?&gt;\n&lt;config xmlns:xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema-instance\"\n xsi:noNamespaceSchemaLocation=\"urn:magento:framework:App\/etc\/routes.xsd\"&gt;\n  &lt;router id=\"admin\"&gt;\n    &lt;route id=\"vendor_module\" frontName=\"vendor_module\"&gt;\n      &lt;module name=\"Vendor_Module\" \/&gt;\n    &lt;\/route&gt;\n  &lt;\/router&gt;\n&lt;\/config&gt;<\/pre>\n<p data-start=\"1091\" data-end=\"1135\">This tells Magento 2 to recognize backend URLs under <code data-start=\"1616\" data-end=\"1633\">vendor_module\/*<\/code>.<\/p>\n\n<div class=\"wk-index-wrap\">\n<h3 class=\"index-title\">Step 2: Define the Admin Menu<\/h3>\n<\/div>\n<p>You must create a menu item to access your admin controller.<br data-start=\"1773\" data-end=\"1776\" \/>Create <strong data-start=\"1783\" data-end=\"1797\"><code data-start=\"1785\" data-end=\"1795\">menu.xml<\/code><\/strong> inside <code data-start=\"1805\" data-end=\"1821\">etc\/adminhtml\/<\/code>.<\/p>\n<p>Add this basic structure to register your menu:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">&lt;?xml version=\"1.0\"?&gt;\n&lt;config xmlns:xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema-instance\"\n xsi:noNamespaceSchemaLocation=\"urn:magento:module:Magento_Backend:etc\/menu.xsd\"&gt;\n  &lt;menu&gt;\n    &lt;add id=\"Vendor_Module::main\"\n         title=\"My Module\"\n         module=\"Vendor_Module\"\n         sortOrder=\"10\"\n         resource=\"Vendor_Module::main\"\/&gt;\n    &lt;add id=\"Vendor_Module::subitem\"\n         title=\"Manage Items\"\n         module=\"Vendor_Module\"\n         sortOrder=\"20\"\n         parent=\"Vendor_Module::main\"\n         action=\"vendor_module\/manage\/index\"\n         resource=\"Vendor_Module::subitem\"\/&gt;\n  &lt;\/menu&gt;\n&lt;\/config&gt;<\/pre>\n<p>This configuration generates a parent menu <strong data-start=\"2573\" data-end=\"2586\">My Module<\/strong> and a child <strong data-start=\"2599\" data-end=\"2615\">Manage Items<\/strong>.<\/p>\n<ul>\n<li><code data-start=\"2621\" data-end=\"2625\">id<\/code> is a unique identifier.<\/li>\n<li><code data-start=\"2654\" data-end=\"2661\">title<\/code> labels the menu item.<\/li>\n<li><code data-start=\"2688\" data-end=\"2696\">parent<\/code> nests the child under the parent item.<\/li>\n<li><code data-start=\"2740\" data-end=\"2748\">action<\/code> defines the controller path to load.<\/li>\n<\/ul>\n\n<div class=\"wk-index-wrap\">\n<h3 class=\"index-title\">Step 3: Create the Admin Controller<\/h3>\n<\/div>\n<p>Controllers handle the logic when a menu item is clicked.<br \/>Create a new folder <code data-start=\"2950\" data-end=\"2979\">Controller\/Adminhtml\/Manage<\/code> under your module root. <\/p>\n<p>Now add the file <code data-start=\"3060\" data-end=\"3071\">Index.php<\/code> with this structure:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">&lt;?php\nnamespace Vendor\\Module\\Controller\\Adminhtml\\Manage;\n\nuse Magento\\Backend\\App\\Action;\nuse Magento\\Backend\\App\\Action\\Context;\nuse Magento\\Framework\\View\\Result\\PageFactory;\n\nclass Index extends Action\n{\n    protected $resultPageFactory;\n\n    public function __construct(\n        Context $context,\n        PageFactory $resultPageFactory\n    ) {\n        parent::__construct($context);\n        $this-&gt;resultPageFactory = $resultPageFactory;\n    }\n\n    public function execute()\n    {\n        $resultPage = $this-&gt;resultPageFactory-&gt;create();\n        $resultPage-&gt;setActiveMenu('Vendor_Module::subitem');\n        $resultPage-&gt;getConfig()-&gt;getTitle()-&gt;prepend(__('Manage Items'));\n        return $resultPage;\n    }\n\n    protected function _isAllowed()\n    {\n        return $this-&gt;_authorization-&gt;isAllowed('Vendor_Module::subitem');\n    }\n}<\/pre>\n<p>This controller renders the admin page when you click your menu.<\/p>\n<ul>\n<li><code data-start=\"4017\" data-end=\"4028\">execute()<\/code> loads a page layout and title.<\/li>\n<li><code data-start=\"4064\" data-end=\"4081\">setActiveMenu()<\/code> highlights your menu item.<\/li>\n<li><code data-start=\"4113\" data-end=\"4127\">_isAllowed()<\/code> ensures proper permissions.<\/li>\n<\/ul>\n\n\n<p><\/p>\n\n\n<div class=\"wk-index-wrap\">\n<h3 class=\"index-title\">Clear Cache and Test<\/h3>\n<\/div>\n<p>After creating files, run the following:<\/p>\n<ul>\n<li>php bin\/magento cache:flush<\/li>\n<\/ul>\n<p data-start=\"4640\" data-end=\"4766\">Refresh your admin panel to see the new menu. Clicking it should load your admin page.<\/p>\n\n<div class=\"wk-index-wrap\">\n<h3 class=\"index-title\">Conclusion<\/h3>\n<\/div>\n<p>You learned how to:<\/p>\n<ul>\n<li>Register a backend route.<\/li>\n<li>Create an admin menu item.<\/li>\n<li>Build a controller to render content.<\/li>\n<\/ul>\n<p>By following this structure, you can add powerful admin functionality to any Magento 2 module.<\/p>\n\n\n<p>You can also <a href=\"https:\/\/github.com\/webkulabhi\/magento2_sample_module\" target=\"_blank\" rel=\"noopener\"><strong>Download sample code form github<\/strong><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this guide, you will learn how to add a custom admin menu and an admin controller in Magento 2.We will cover all steps from configuration to routing and controller implementation. If you want to learn how to create a module, you can check our blog Create a Module in Magento2 Overview of Admin Menu <a href=\"https:\/\/webkul.com\/blog\/create-admin-menu-and-controller-in-magento2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":4,"featured_media":39246,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[302],"tags":[4359,2713,2070,5294,590],"class_list":["post-27469","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-magento2","tag-admin-controller","tag-controller","tag-magento2","tag-menu","tag-webkul"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>create admin menu and controller in magento2<\/title>\n<meta name=\"description\" content=\"create admin menu and controller in magento2\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/create-admin-menu-and-controller-in-magento2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"create admin menu and controller in magento2\" \/>\n<meta property=\"og:description\" content=\"create admin menu and controller in magento2\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/create-admin-menu-and-controller-in-magento2\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2015-06-17T11:49:10+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-06T13:14:36+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet.png\" \/>\n\t<meta property=\"og:image:width\" content=\"825\" \/>\n\t<meta property=\"og:image:height\" content=\"260\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Abhishek Singh\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Abhishek Singh\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/create-admin-menu-and-controller-in-magento2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-admin-menu-and-controller-in-magento2\/\"},\"author\":{\"name\":\"Abhishek Singh\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/573e459f54796eb4195511990de4bfd0\"},\"headline\":\"How to Create an Admin Menu and Controller in Magento 2\",\"datePublished\":\"2015-06-17T11:49:10+00:00\",\"dateModified\":\"2026-02-06T13:14:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-admin-menu-and-controller-in-magento2\/\"},\"wordCount\":328,\"commentCount\":5,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-admin-menu-and-controller-in-magento2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet.png\",\"keywords\":[\"admin controller\",\"controller\",\"Magento2\",\"Menu\",\"webkul\"],\"articleSection\":[\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/create-admin-menu-and-controller-in-magento2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/create-admin-menu-and-controller-in-magento2\/\",\"url\":\"https:\/\/webkul.com\/blog\/create-admin-menu-and-controller-in-magento2\/\",\"name\":\"create admin menu and controller in magento2\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-admin-menu-and-controller-in-magento2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-admin-menu-and-controller-in-magento2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet.png\",\"datePublished\":\"2015-06-17T11:49:10+00:00\",\"dateModified\":\"2026-02-06T13:14:36+00:00\",\"description\":\"create admin menu and controller in magento2\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-admin-menu-and-controller-in-magento2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/create-admin-menu-and-controller-in-magento2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/create-admin-menu-and-controller-in-magento2\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet.png\",\"width\":825,\"height\":260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/create-admin-menu-and-controller-in-magento2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Create an Admin Menu and Controller in Magento 2\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/573e459f54796eb4195511990de4bfd0\",\"name\":\"Abhishek Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d4ac7e0e671bf743359d7e3f140c262d1b16d71106f0a1aeaecca327a2805ae4?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d4ac7e0e671bf743359d7e3f140c262d1b16d71106f0a1aeaecca327a2805ae4?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Abhishek Singh\"},\"description\":\"Adobe Commerce certified Magento developer with over 12 years of experience at Webkul. Passionate about scalable Magento 2-based webshops, AI, and multi-channel integrations, Abhishek consistently delivers innovative and efficient e-commerce solutions that propel businesses forward.\",\"sameAs\":[\"http:\/\/webkul.com\"],\"url\":\"https:\/\/webkul.com\/blog\/author\/abhishek\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"create admin menu and controller in magento2","description":"create admin menu and controller in magento2","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:\/\/webkul.com\/blog\/create-admin-menu-and-controller-in-magento2\/","og_locale":"en_US","og_type":"article","og_title":"create admin menu and controller in magento2","og_description":"create admin menu and controller in magento2","og_url":"https:\/\/webkul.com\/blog\/create-admin-menu-and-controller-in-magento2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2015-06-17T11:49:10+00:00","article_modified_time":"2026-02-06T13:14:36+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet.png","type":"image\/png"}],"author":"Abhishek Singh","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Abhishek Singh","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/create-admin-menu-and-controller-in-magento2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/create-admin-menu-and-controller-in-magento2\/"},"author":{"name":"Abhishek Singh","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/573e459f54796eb4195511990de4bfd0"},"headline":"How to Create an Admin Menu and Controller in Magento 2","datePublished":"2015-06-17T11:49:10+00:00","dateModified":"2026-02-06T13:14:36+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/create-admin-menu-and-controller-in-magento2\/"},"wordCount":328,"commentCount":5,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/create-admin-menu-and-controller-in-magento2\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet.png","keywords":["admin controller","controller","Magento2","Menu","webkul"],"articleSection":["Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/create-admin-menu-and-controller-in-magento2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/create-admin-menu-and-controller-in-magento2\/","url":"https:\/\/webkul.com\/blog\/create-admin-menu-and-controller-in-magento2\/","name":"create admin menu and controller in magento2","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/create-admin-menu-and-controller-in-magento2\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/create-admin-menu-and-controller-in-magento2\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet.png","datePublished":"2015-06-17T11:49:10+00:00","dateModified":"2026-02-06T13:14:36+00:00","description":"create admin menu and controller in magento2","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/create-admin-menu-and-controller-in-magento2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/create-admin-menu-and-controller-in-magento2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/create-admin-menu-and-controller-in-magento2\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet.png","width":825,"height":260},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/create-admin-menu-and-controller-in-magento2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Create an Admin Menu and Controller in Magento 2"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/573e459f54796eb4195511990de4bfd0","name":"Abhishek Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d4ac7e0e671bf743359d7e3f140c262d1b16d71106f0a1aeaecca327a2805ae4?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d4ac7e0e671bf743359d7e3f140c262d1b16d71106f0a1aeaecca327a2805ae4?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Abhishek Singh"},"description":"Adobe Commerce certified Magento developer with over 12 years of experience at Webkul. Passionate about scalable Magento 2-based webshops, AI, and multi-channel integrations, Abhishek consistently delivers innovative and efficient e-commerce solutions that propel businesses forward.","sameAs":["http:\/\/webkul.com"],"url":"https:\/\/webkul.com\/blog\/author\/abhishek\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/27469","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=27469"}],"version-history":[{"count":16,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/27469\/revisions"}],"predecessor-version":[{"id":525244,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/27469\/revisions\/525244"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/39246"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=27469"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=27469"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=27469"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}