{"id":436414,"date":"2024-04-25T11:30:34","date_gmt":"2024-04-25T11:30:34","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=436414"},"modified":"2024-08-23T14:51:18","modified_gmt":"2024-08-23T14:51:18","slug":"create-an-admin-theme-in-magento-2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/create-an-admin-theme-in-magento-2\/","title":{"rendered":"Create an admin theme in Magento 2"},"content":{"rendered":"\n<p>Today we will understand how to create an admin <a href=\"https:\/\/webkul.com\/adobe-commerce-theme-template-development-services\/\">theme in Magento 2<\/a> and what it will look like.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li>You should have a custom theme.<\/li>\n\n\n\n<li>A custom module to apply the custom admin theme.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">Overview To create a custom Admin theme, take the following steps:<\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Create a theme directory.<\/li>\n\n\n\n<li>Add a declaration theme.xml.<\/li>\n\n\n\n<li>Add registration.php.<\/li>\n<\/ol>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img decoding=\"async\" width=\"1147\" height=\"547\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/sidebar_1.webp\" alt=\"sidebar\" class=\"wp-image-437006\" style=\"width:815px;height:auto\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/sidebar_1.webp 1147w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/sidebar_1-300x143.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/sidebar_1-250x119.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/sidebar_1-768x366.webp 768w\" sizes=\"(max-width: 1147px) 100vw, 1147px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Create a theme directory-:-<\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li>You must create a custom theme at the location <strong>app\/design\/adminhtml\/Webkul\/AdminTheme<\/strong>.<\/li>\n\n\n\n<li>Add declaration theme.xml containing the theme name and parent theme name.<\/li>\n<\/ol>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;theme xmlns:xsi=&quot;http:\/\/www.w3.org\/2001\/XMLSchema-instance&quot; xsi:noNamespaceSchemaLocation=&quot;urn:magento:framework:Config\/etc\/theme.xsd&quot;&gt;\n     &lt;title&gt;Webkul Admin Theme&lt;\/title&gt;\n     &lt;parent&gt;Magento\/backend&lt;\/parent&gt;\n&lt;\/theme&gt;<\/pre>\n\n\n\n<p>  3. Add a registration.php to register your custom theme.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\"> &lt;?php\nuse \\Magento\\Framework\\Component\\ComponentRegistrar;\nComponentRegistrar::register(ComponentRegistrar::THEME, &#039;adminhtml\/Webkul\/AdminTheme&#039;, __DIR__);<\/pre>\n\n\n\n<p>Once you open the Admin or reload any Admin page having added the theme files to the files system, your theme gets registered and added to the database.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Apply an admin theme in Magento 2<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/webkul.com\/blog\/magento-tutorial\/\">Added a basic module <\/a>(<strong>etc\/module.xml and registration.php<\/strong>) so here We have created <strong>Webkul_AdminTheme<\/strong>.The module must load after the <strong>Magento_Theme<\/strong> module so you need to add into the <a href=\"https:\/\/developer.adobe.com\/commerce\/php\/development\/build\/component-load-order\/\">sequence<\/a>.<\/li>\n\n\n\n<li>Specify the new Admin theme in your module&#8217;s di.xml<\/li>\n<\/ul>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;config xmlns:xsi=&quot;http:\/\/www.w3.org\/2001\/XMLSchema-instance&quot; xsi:noNamespaceSchemaLocation=&quot;urn:magento:framework:ObjectManager\/etc\/config.xsd&quot;&gt;\n\n    &lt;!-- Admin theme. Start --&gt;\n    &lt;type name=&quot;Magento\\Theme\\Model\\View\\Design&quot;&gt;\n        &lt;arguments&gt;\n             &lt;argument name=&quot;themes&quot; xsi:type=&quot;array&quot;&gt;\n                 &lt;item name=&quot;adminhtml&quot; xsi:type=&quot;string&quot;&gt;Webkul\/AdminTheme&lt;\/item&gt; \n             &lt;\/argument&gt;\n         &lt;\/arguments&gt;\n    &lt;\/type&gt;\n    &lt;!-- Admin theme. End --&gt;\n&lt;\/config&gt;<\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Install the module by running the <strong>set:up<\/strong> <a href=\"https:\/\/experienceleague.adobe.com\/en\/docs\/commerce-operations\/reference\/magento-open-source\">command<\/a> to make changes.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Logo Admin theme in Magento 2 <\/h2>\n\n\n\n<p>In the default\u00a0<strong><code>Magento\/backend<\/code>\u00a0<\/strong>theme\u00a0<code><strong>lib\/web\/images\/magento-logo.svg<\/strong><\/code>\u00a0is used as theme logo. <\/p>\n\n\n\n<p><br>To override it, in your theme directory, create a\u00a0<code><strong>web\/images<\/strong><\/code>\u00a0sub-directory, and add your custom file named\u00a0<code><strong>magento-logo.svg<\/strong><\/code><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Make CSS changes<\/h2>\n\n\n\n<p>Once the module is installed, You can make changes to the CSS and it will be effect at the admin end. You need to add the css at <strong>app\/design\/adminhtml\/Webkul\/AdminTheme\/webkul\/css\/source<\/strong>\/<strong>_theme<\/strong>.less<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"665\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/result-1-1200x665.webp\" alt=\"result\" class=\"wp-image-437044\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/result-1-1200x665.webp 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/result-1-300x166.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/result-1-250x139.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/result-1-768x426.webp 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/result-1-1536x851.webp 1536w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/result-1.webp 1822w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Override the core modules<\/h2>\n\n\n\n<p>Now you can override the core module&#8217;s file at the admin end. Here we have overridden <strong>Magento_Analytics<\/strong>&#8216;s section .phtml file and added a custom text.<\/p>\n\n\n\n<p>copy the .phtml file from <strong>Vendor\/Magento\/Analytics\/view\/adminhtml\/template\/dashboard\/section.htm<\/strong>l to <strong>app\/design\/adminhtml\/Webkul\/AdminTheme\/Magento_Analytics\/templates\/<strong><strong>dashboard<\/strong><\/strong><\/strong>\/<strong>section.phtml<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"339\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/pic3-1200x339.webp\" alt=\"override custom module\" class=\"wp-image-436636\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/pic3-1200x339.webp 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/pic3-300x85.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/pic3-250x71.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/pic3-768x217.webp 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/pic3-1536x433.webp 1536w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/pic3.webp 1744w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Uninstallation<\/h2>\n\n\n\n<p>There is no such option so we have to disable the custom module which used to apply the admin theme it will remove the custom admin theme being working.<\/p>\n\n\n\n<p>You may also check our quality&nbsp;<a href=\"https:\/\/store.webkul.com\/Magento-2.html\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Magento 2 Extensions<\/strong><\/a>.<\/p>\n\n\n\n<p>Happy Coding <\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Today we will understand how to create an admin theme in Magento 2 and what it will look like. Prerequisites Overview To create a custom Admin theme, take the following steps: Create a theme directory-:- 3. Add a registration.php to register your custom theme. Once you open the Admin or reload any Admin page having <a href=\"https:\/\/webkul.com\/blog\/create-an-admin-theme-in-magento-2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":523,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9121],"tags":[15440,15441,2070],"class_list":["post-436414","post","type-post","status-publish","format-standard","hentry","category-magento-2","tag-admin-theme","tag-customzation","tag-magento2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Create an admin theme in Magento 2 - Webkul Blog<\/title>\n<meta name=\"description\" content=\"Create a admin theme in Magento 2 and using the custom module.\" \/>\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-an-admin-theme-in-magento-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Create an admin theme in Magento 2 - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Create a admin theme in Magento 2 and using the custom module.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/create-an-admin-theme-in-magento-2\/\" \/>\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=\"2024-04-25T11:30:34+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-08-23T14:51:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/04\/sidebar_1.webp\" \/>\n<meta name=\"author\" content=\"Sumesh Kumar\" \/>\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=\"Sumesh Kumar\" \/>\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:\/\/webkul.com\/blog\/create-an-admin-theme-in-magento-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-an-admin-theme-in-magento-2\/\"},\"author\":{\"name\":\"Sumesh Kumar\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/a33dc0d6c11a015c288c07b41892f59e\"},\"headline\":\"Create an admin theme in Magento 2\",\"datePublished\":\"2024-04-25T11:30:34+00:00\",\"dateModified\":\"2024-08-23T14:51:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-an-admin-theme-in-magento-2\/\"},\"wordCount\":361,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-an-admin-theme-in-magento-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/04\/sidebar_1.webp\",\"keywords\":[\"admin theme\",\"customzation\",\"Magento2\"],\"articleSection\":[\"Magento 2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/create-an-admin-theme-in-magento-2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/create-an-admin-theme-in-magento-2\/\",\"url\":\"https:\/\/webkul.com\/blog\/create-an-admin-theme-in-magento-2\/\",\"name\":\"Create an admin theme in Magento 2 - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-an-admin-theme-in-magento-2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-an-admin-theme-in-magento-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/04\/sidebar_1.webp\",\"datePublished\":\"2024-04-25T11:30:34+00:00\",\"dateModified\":\"2024-08-23T14:51:18+00:00\",\"description\":\"Create a admin theme in Magento 2 and using the custom module.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-an-admin-theme-in-magento-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/create-an-admin-theme-in-magento-2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/create-an-admin-theme-in-magento-2\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/sidebar_1.webp\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/sidebar_1.webp\",\"width\":1147,\"height\":547},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/create-an-admin-theme-in-magento-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Create an admin theme 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\/a33dc0d6c11a015c288c07b41892f59e\",\"name\":\"Sumesh Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f13d947aff56bddfe679a150603adf2d461c6c78b6df48caff552a275dfc1d39?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\/f13d947aff56bddfe679a150603adf2d461c6c78b6df48caff552a275dfc1d39?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Sumesh Kumar\"},\"description\":\"Sumesh, a skilled Software Engineer, specializes in Magento Marketplace and Shipping Integration services, creating tailored solutions that enhance eCommerce efficiency, streamline operations and support business growth in digital storefronts.\",\"url\":\"https:\/\/webkul.com\/blog\/author\/sumeshkumar-magento091\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Create an admin theme in Magento 2 - Webkul Blog","description":"Create a admin theme in Magento 2 and using the custom module.","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-an-admin-theme-in-magento-2\/","og_locale":"en_US","og_type":"article","og_title":"Create an admin theme in Magento 2 - Webkul Blog","og_description":"Create a admin theme in Magento 2 and using the custom module.","og_url":"https:\/\/webkul.com\/blog\/create-an-admin-theme-in-magento-2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2024-04-25T11:30:34+00:00","article_modified_time":"2024-08-23T14:51:18+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/04\/sidebar_1.webp","type":"","width":"","height":""}],"author":"Sumesh Kumar","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Sumesh Kumar","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/create-an-admin-theme-in-magento-2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/create-an-admin-theme-in-magento-2\/"},"author":{"name":"Sumesh Kumar","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/a33dc0d6c11a015c288c07b41892f59e"},"headline":"Create an admin theme in Magento 2","datePublished":"2024-04-25T11:30:34+00:00","dateModified":"2024-08-23T14:51:18+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/create-an-admin-theme-in-magento-2\/"},"wordCount":361,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/create-an-admin-theme-in-magento-2\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/04\/sidebar_1.webp","keywords":["admin theme","customzation","Magento2"],"articleSection":["Magento 2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/create-an-admin-theme-in-magento-2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/create-an-admin-theme-in-magento-2\/","url":"https:\/\/webkul.com\/blog\/create-an-admin-theme-in-magento-2\/","name":"Create an admin theme in Magento 2 - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/create-an-admin-theme-in-magento-2\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/create-an-admin-theme-in-magento-2\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/04\/sidebar_1.webp","datePublished":"2024-04-25T11:30:34+00:00","dateModified":"2024-08-23T14:51:18+00:00","description":"Create a admin theme in Magento 2 and using the custom module.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/create-an-admin-theme-in-magento-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/create-an-admin-theme-in-magento-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/create-an-admin-theme-in-magento-2\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/sidebar_1.webp","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/sidebar_1.webp","width":1147,"height":547},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/create-an-admin-theme-in-magento-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Create an admin theme 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\/a33dc0d6c11a015c288c07b41892f59e","name":"Sumesh Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/f13d947aff56bddfe679a150603adf2d461c6c78b6df48caff552a275dfc1d39?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\/f13d947aff56bddfe679a150603adf2d461c6c78b6df48caff552a275dfc1d39?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Sumesh Kumar"},"description":"Sumesh, a skilled Software Engineer, specializes in Magento Marketplace and Shipping Integration services, creating tailored solutions that enhance eCommerce efficiency, streamline operations and support business growth in digital storefronts.","url":"https:\/\/webkul.com\/blog\/author\/sumeshkumar-magento091\/"}]}},"amp_enabled":false,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/436414","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\/523"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=436414"}],"version-history":[{"count":52,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/436414\/revisions"}],"predecessor-version":[{"id":447665,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/436414\/revisions\/447665"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=436414"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=436414"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=436414"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}