{"id":27868,"date":"2015-06-24T15:47:42","date_gmt":"2015-06-24T15:47:42","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=27868"},"modified":"2026-02-13T13:12:45","modified_gmt":"2026-02-13T13:12:45","slug":"magento2-how-to-add-css-and-js-file-in-module","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/magento2-how-to-add-css-and-js-file-in-module\/","title":{"rendered":"Magento 2: How to add CSS and js File in Module"},"content":{"rendered":"\n<p>Here we&#8217;ll learn how to add CSS and js file in <a href=\"https:\/\/store.webkul.com\/Magento-2.html\">Magento 2 module<\/a>.<br>Magento2: How to add css and js file in module<\/p>\n\n\n\n<p>In blog post <a href=\"http:\/\/webkul.com\/blog\/magento2-create-list-with-pager-in-frontend\/\">Magento2: Create list with pager in frontend<\/a>\u00a0 we learned that how to create controller, page layout file, templates file, block files\u00a0 etc.<\/p>\n\n\n\n<p>so we have already module named &#8220;Webkul_Grid&#8221;,&nbsp; in this module we add css and js file and for this we need to create following&nbsp;directory structure<\/p>\n\n\n\n<p>in this module<\/p>\n\n\n\n<p>app\/code\/Webkul\/Grid\/view\/frontend\/web\/css (contain css file )<br>app\/code\/Webkul\/Grid\/view\/frontend\/web\/js (contain js file )<\/p>\n\n\n\n<p>css and js file add&nbsp; to page by&nbsp; layout xml<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong><span lang=\"en-US\">First<\/span> we create css file which we want to add in our page named grid.css in app\/code\/Webkul\/Grid\/view\/frontend\/web\/css folder<\/strong><\/li>\n<\/ol>\n\n\n\n<pre class=\"EnlighterJSRAW\">#my-orders-table{border:2px solid #FF0000;color:#FF0000;}\n\n\/** Here i add style on table id for understand  **\/\n\/** Magento2 support &#039;less&#039;  in next post i&#039;ll explain how to use less in magento2 module **\/\n\/** here we add normal css file in magento2 **\/<\/pre>\n\n\n\n<p> 2<strong>.  <span lang=\"en-US\">Now, we will create js\u00a0 file <\/span>which we want to add in our page named<span lang=\"en-US\">named grid.js in app\/code\/Webkul\/Grid\/view\/frontend\/web\/js<\/span><\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">require(&#091;\n    &#039;jquery&#039;,\n    &#039;domReady!&#039;\n], function ($) {\n    &#039;use strict&#039;;\n   \/* for check in this file we only add jquery code that display(in console) class of element which selector used *\/\n    console.log($(&#039;#my-orders-table&#039;).attr(&#039;class&#039;));\n});<\/pre>\n\n\n\n<p>  <span lang=\"en-US\">3.<strong> First, we will open frontend page layout\u00a0 file in which we want to add css and js. In our &#8216;Webkul_Grid&#8217; module we want to add css and js in gird list page so we open this page layout file named grid_index_index.xml in app\/code\/Webkul\/Grid\/view\/frontend\/layout<\/strong><\/span><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;page xmlns:xsi=&quot;http:\/\/www.w3.org\/2001\/XMLSchema-instance&quot; layout=&quot;2columns-left&quot; xsi:noNamespaceSchemaLocation=&quot;..\/..\/..\/..\/..\/..\/..\/lib\/internal\/Magento\/Framework\/View\/Layout\/etc\/page_configuration.xsd&quot;&gt;\n&lt;!-- for add css and js file on page --&gt;\n&lt;head&gt;\n       &lt;!-- for css file --&gt;\n       &lt;css src=&quot;Webkul_Grid::css\/grid.css&quot;\/&gt;\n\n       &lt;!-- for js file --&gt;\n       &lt;script src=&quot;Webkul_Grid::js\/grid.js&quot;\/&gt;\n       \n       &lt;!-- src=&quot;Webkul_Grid::js\/grid.js&quot; that mean from here get file --&gt;\n       &lt;!-- Webkul_Grid is module name, js\/grid.js and css\/grid.css are location of files in web folder of module  --&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n    &lt;referenceContainer name=&quot;content&quot;&gt;\n        &lt;block class=&quot;Webkul\\Grid\\Block\\Index&quot; name=&quot;Grid&quot; template=&quot;Webkul_Grid::grid\/success.phtml&quot;&gt;\n        &lt;\/block&gt;\n    &lt;\/referenceContainer&gt;\n&lt;\/body&gt;\n&lt;\/page&gt;<\/pre>\n\n\n\n<p>Note: in next post i will explain how to use &#8216;less&#8217; for style in magento 2<\/p>\n\n\n\n<p>  4.<strong> Now, on\u00a0 our frontend\u00a0 page css and js file added and effect of css and js apply on\u00a0 page and output is as following<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image\"><a href=\"http:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/06\/Selection_021.png\"><img decoding=\"async\" width=\"1269\" height=\"566\" src=\"http:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/06\/Selection_021.png\" alt=\"Selection_021\" class=\"wp-image-27872\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/06\/Selection_021.png 1269w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/06\/Selection_021-250x112.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/06\/Selection_021-300x134.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/06\/Selection_021-1200x535.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/06\/Selection_021-604x270.png 604w\" sizes=\"(max-width: 1269px) 100vw, 1269px\" loading=\"lazy\" \/><\/a><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>Here we&#8217;ll learn how to add CSS and js file in Magento 2 module.Magento2: How to add css and js file in module In blog post Magento2: Create list with pager in frontend\u00a0 we learned that how to create controller, page layout file, templates file, block files\u00a0 etc. so we have already module named &#8220;Webkul_Grid&#8221;,&nbsp; <a href=\"https:\/\/webkul.com\/blog\/magento2-how-to-add-css-and-js-file-in-module\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":4,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[79,302],"tags":[217,83,1894,2056,2070],"class_list":["post-27868","post","type-post","status-publish","format-standard","hentry","category-jquery","category-magento2","tag-css","tag-jquery-2","tag-js","tag-magento","tag-magento2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Magento 2: How to add CSS and js File in Module - Webkul Blog<\/title>\n<meta name=\"description\" content=\"Magento2: How to add css and js file in 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\/magento2-how-to-add-css-and-js-file-in-module\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Magento 2: How to add CSS and js File in Module - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Magento2: How to add css and js file in module\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/magento2-how-to-add-css-and-js-file-in-module\/\" \/>\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-24T15:47:42+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-13T13:12:45+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/webkul.com\/blog\/wp-content\/uploads\/2015\/06\/Selection_021.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\/magento2-how-to-add-css-and-js-file-in-module\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento2-how-to-add-css-and-js-file-in-module\/\"},\"author\":{\"name\":\"Abhishek Singh\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/573e459f54796eb4195511990de4bfd0\"},\"headline\":\"Magento 2: How to add CSS and js File in Module\",\"datePublished\":\"2015-06-24T15:47:42+00:00\",\"dateModified\":\"2026-02-13T13:12:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento2-how-to-add-css-and-js-file-in-module\/\"},\"wordCount\":268,\"commentCount\":3,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento2-how-to-add-css-and-js-file-in-module\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/webkul.com\/blog\/wp-content\/uploads\/2015\/06\/Selection_021.png\",\"keywords\":[\"css\",\"jquery\",\"js\",\"magento\",\"Magento2\"],\"articleSection\":[\"jQuery\",\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/magento2-how-to-add-css-and-js-file-in-module\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/magento2-how-to-add-css-and-js-file-in-module\/\",\"url\":\"https:\/\/webkul.com\/blog\/magento2-how-to-add-css-and-js-file-in-module\/\",\"name\":\"Magento 2: How to add CSS and js File in Module - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento2-how-to-add-css-and-js-file-in-module\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento2-how-to-add-css-and-js-file-in-module\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/webkul.com\/blog\/wp-content\/uploads\/2015\/06\/Selection_021.png\",\"datePublished\":\"2015-06-24T15:47:42+00:00\",\"dateModified\":\"2026-02-13T13:12:45+00:00\",\"description\":\"Magento2: How to add css and js file in module\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento2-how-to-add-css-and-js-file-in-module\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/magento2-how-to-add-css-and-js-file-in-module\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/magento2-how-to-add-css-and-js-file-in-module\/#primaryimage\",\"url\":\"http:\/\/webkul.com\/blog\/wp-content\/uploads\/2015\/06\/Selection_021.png\",\"contentUrl\":\"http:\/\/webkul.com\/blog\/wp-content\/uploads\/2015\/06\/Selection_021.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/magento2-how-to-add-css-and-js-file-in-module\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Magento 2: How to add CSS and js File in Module\"}]},{\"@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":"Magento 2: How to add CSS and js File in Module - Webkul Blog","description":"Magento2: How to add css and js file in 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\/magento2-how-to-add-css-and-js-file-in-module\/","og_locale":"en_US","og_type":"article","og_title":"Magento 2: How to add CSS and js File in Module - Webkul Blog","og_description":"Magento2: How to add css and js file in module","og_url":"https:\/\/webkul.com\/blog\/magento2-how-to-add-css-and-js-file-in-module\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2015-06-24T15:47:42+00:00","article_modified_time":"2026-02-13T13:12:45+00:00","og_image":[{"url":"http:\/\/webkul.com\/blog\/wp-content\/uploads\/2015\/06\/Selection_021.png","type":"","width":"","height":""}],"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\/magento2-how-to-add-css-and-js-file-in-module\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/magento2-how-to-add-css-and-js-file-in-module\/"},"author":{"name":"Abhishek Singh","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/573e459f54796eb4195511990de4bfd0"},"headline":"Magento 2: How to add CSS and js File in Module","datePublished":"2015-06-24T15:47:42+00:00","dateModified":"2026-02-13T13:12:45+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/magento2-how-to-add-css-and-js-file-in-module\/"},"wordCount":268,"commentCount":3,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/magento2-how-to-add-css-and-js-file-in-module\/#primaryimage"},"thumbnailUrl":"http:\/\/webkul.com\/blog\/wp-content\/uploads\/2015\/06\/Selection_021.png","keywords":["css","jquery","js","magento","Magento2"],"articleSection":["jQuery","Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/magento2-how-to-add-css-and-js-file-in-module\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/magento2-how-to-add-css-and-js-file-in-module\/","url":"https:\/\/webkul.com\/blog\/magento2-how-to-add-css-and-js-file-in-module\/","name":"Magento 2: How to add CSS and js File in Module - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/magento2-how-to-add-css-and-js-file-in-module\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/magento2-how-to-add-css-and-js-file-in-module\/#primaryimage"},"thumbnailUrl":"http:\/\/webkul.com\/blog\/wp-content\/uploads\/2015\/06\/Selection_021.png","datePublished":"2015-06-24T15:47:42+00:00","dateModified":"2026-02-13T13:12:45+00:00","description":"Magento2: How to add css and js file in module","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/magento2-how-to-add-css-and-js-file-in-module\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/magento2-how-to-add-css-and-js-file-in-module\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/magento2-how-to-add-css-and-js-file-in-module\/#primaryimage","url":"http:\/\/webkul.com\/blog\/wp-content\/uploads\/2015\/06\/Selection_021.png","contentUrl":"http:\/\/webkul.com\/blog\/wp-content\/uploads\/2015\/06\/Selection_021.png"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/magento2-how-to-add-css-and-js-file-in-module\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Magento 2: How to add CSS and js File in Module"}]},{"@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\/27868","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=27868"}],"version-history":[{"count":11,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/27868\/revisions"}],"predecessor-version":[{"id":526496,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/27868\/revisions\/526496"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=27868"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=27868"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=27868"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}