{"id":70770,"date":"2017-01-18T15:03:26","date_gmt":"2017-01-18T15:03:26","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=70770"},"modified":"2026-02-11T13:34:40","modified_gmt":"2026-02-11T13:34:40","slug":"use-less-magento-2-template-modules","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/use-less-magento-2-template-modules\/","title":{"rendered":"Use of LESS in Magento 2 Template and Modules"},"content":{"rendered":"\n<p>Today I am going to explain use of LESS in magento 2 templates and modules in this article. In my previous blog I already explained\u00a0<a class=\"inline-block text-capitalize\" title=\"Use of LESS in magento 2\" href=\"http:\/\/webkul.com\/blog\/use-less-magento-2\/\">Use Of LESS In Magento 2<\/a>\u00a0. <\/p>\n\n\n\n<p>Now I am going to elaborate more on how you can use LESS files in your custom modules or custom templates.<\/p>\n\n\n\n<p><span style=\"color: #ff0000;\"><strong>NOTE<\/strong><\/span> : I am using Server Side compilation with developer mode, you can use any one which you want.<\/p>\n\n\n\n<p>So let&#8217;s&nbsp;start by <a href=\"http:\/\/webkul.com\/blog\/create-hello-module-in-magento2\/\">creating a custom module<\/a> with all basic files.<\/p>\n\n\n\n<p>Now create a <em><strong>default.xml<\/strong><\/em> file under <em><strong>app\/code\/Namespace\/Module\/view\/frontend\/layout\/<\/strong> <\/em>and put following code in the file :<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?xml version=&quot;1.0&quot;?&gt;\n&lt;page xmlns:xsi=&quot;http:\/\/www.w3.org\/2001\/XMLSchema-instance&quot; xsi:noNamespaceSchemaLocation=&quot;urn:magento:framework:View\/Layout\/etc\/page_configuration.xsd&quot;&gt;\n    &lt;head&gt;\n        &lt;css src=&quot;Namespace_Module::custom.css&quot;\/&gt;\n    &lt;\/head&gt;\n&lt;\/page&gt;<\/pre>\n\n\n\n<p>In the above file, there must be a <em><strong>custom.css<\/strong> <\/em>under&nbsp;<em><strong>app\/code\/Namespace\/Module\/view\/frontend\/web\/<\/strong><\/em><strong> &nbsp;&nbsp;<\/strong>but do not put <em><strong>custom.css<\/strong><\/em> there, just put <em><strong>custom.less<\/strong><\/em> file there with the following code :<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">@color: #ddcd6a;\ndiv\n{\n    background-color: @color;\n}<\/pre>\n\n\n\n<p>Now remove all files from &#8220;<em><strong>var\/view_preprocessed\/source\/&#8221;<\/strong><\/em>, <em><strong>&#8220;var\/view_preprocessed\/css\/&#8221;<\/strong><\/em> and<em> <strong>&#8220;pub\/static\/frontend\/Magento\/current_theme\/current_locale\/&#8221;<\/strong><\/em> .<\/p>\n\n\n\n<p>Clear&nbsp;your cache,&nbsp;load your frontend and see the changes. <em><strong>Congratulations !!!<\/strong><\/em> you have successfully created a LESS&nbsp;file instead of CSS file which reflects at frontend.<\/p>\n\n\n\n<p>So the flow is like, when you defined <em><strong>custom.css<\/strong><\/em>, Magento finds the <strong>custom.css<\/strong> in&nbsp;&nbsp;<strong><em>app\/code\/Namespace\/Module\/view\/frontend\/web\/<\/em><\/strong> but it does not get success in finding that CSS&nbsp;file there, now it searches for file <em><strong>custom.less<\/strong><\/em>&nbsp;under <em><strong>app\/code\/Namespace\/Module\/view\/frontend\/web\/<\/strong><\/em> and if found then transform it to <em><strong>custom.css<\/strong> <\/em>file and put in <em><strong>pub\/static\/&#8230;.<\/strong><\/em><\/p>\n\n\n\n<p>I hope you got now how LESS&nbsp;preprocessing works for magento 2, &nbsp;now move towards the next, i.e. use of LESS&nbsp;in magento2 template.<\/p>\n\n\n\n<p>I assume you know how templates will be created, I am using here custom theme&nbsp;with parent theme <em><strong>blank<\/strong><\/em>.<\/p>\n\n\n\n<p>So, let&#8217;s create a LESS&nbsp;file named as <em><strong>_extend.less<\/strong><\/em> under <em><strong>app\/design\/frontend\/Namespace\/theme\/web\/css\/source\/&nbsp;<\/strong><\/em>and write some LESS&nbsp;code in the file, by using this you inherits&nbsp;the magento <em><strong>blank<\/strong><\/em>&nbsp;theme LESS&nbsp;files, i.e. all the CSS&nbsp;and LESS&nbsp;files of Magento <em><strong>Blank<\/strong><\/em> theme will be loaded with <em><strong>_extend.less<\/strong><\/em> file and when you open &nbsp;<em><strong>pub\/static\/frontend\/Namespace\/current_theme\/en_US\/css\/styles-l.less or&nbsp;styles-m.less &nbsp;<\/strong><\/em>files&nbsp;you will find there written&nbsp;<span style=\"color: #ff0000;\"><em><strong>@import &#8216;source\/_extend.less&#8217;;<\/strong><\/em><\/span>&nbsp; that means along with all LESS&nbsp;files<em><strong> _extend.less<\/strong><\/em>&nbsp;file code will also be compiled and the css written in <em><strong>_extend.less<\/strong><\/em> file will be merged&nbsp;with default css files, i.e. <em><strong>styles-l.css<\/strong><\/em> and <em><strong>styles-m.css<\/strong><\/em>.<\/p>\n\n\n\n<p>You can also create <em><strong>_extend.less<\/strong> <\/em>file for any magento package in custom theme, i.e. <em><strong>app\/design\/frontend\/Namespace\/theme\/Magento_Catalog\/web\/css\/source\/_extend.less<\/strong><\/em> this will also be merged with Magento <em><strong>Blank<\/strong><\/em> theme LESS.<\/p>\n\n\n\n<p>That\u2019s all for today in this article, hope it will help you to use LESS in custom modules and templates in magento 2. Try this and&nbsp;if you have any query then&nbsp;just comment below \ud83d\ude42<\/p>\n\n\n\n<p>Also, You can read our blog to know about the <a href=\"https:\/\/webkul.com\/blog\/advantages-using-less\/\">advantages of using LESS<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Today I am going to explain use of LESS in magento 2 templates and modules in this article. In my previous blog I already explained\u00a0Use Of LESS In Magento 2\u00a0. Now I am going to elaborate more on how you can use LESS files in your custom modules or custom templates. NOTE : I am <a href=\"https:\/\/webkul.com\/blog\/use-less-magento-2-template-modules\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":103,"featured_media":63938,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[302,1],"tags":[4376,590],"class_list":["post-70770","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-magento2","category-uncategorized","tag-use-of-less-in-magento-2-template-and-modules","tag-webkul"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Use of LESS in magento 2 template and modules<\/title>\n<meta name=\"description\" content=\"That\u2019s all for today in this article, hope it will help you to use LESS in custom modules and templates in magento 2.\" \/>\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\/use-less-magento-2-template-modules\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Use of LESS in magento 2 template and modules\" \/>\n<meta property=\"og:description\" content=\"That\u2019s all for today in this article, hope it will help you to use LESS in custom modules and templates in magento 2.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/use-less-magento-2-template-modules\/\" \/>\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=\"2017-01-18T15:03:26+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-11T13:34:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/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=\"Pranjali Goel\" \/>\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=\"Pranjali Goel\" \/>\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\/use-less-magento-2-template-modules\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/use-less-magento-2-template-modules\/\"},\"author\":{\"name\":\"Pranjali Goel\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/c1964884ceb33a5ffdf322ee5424f692\"},\"headline\":\"Use of LESS in Magento 2 Template and Modules\",\"datePublished\":\"2017-01-18T15:03:26+00:00\",\"dateModified\":\"2026-02-11T13:34:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/use-less-magento-2-template-modules\/\"},\"wordCount\":543,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/use-less-magento-2-template-modules\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/Magneto-Code-Snippet.png\",\"keywords\":[\"Use of LESS in magento 2 template and modules\",\"webkul\"],\"articleSection\":[\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/use-less-magento-2-template-modules\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/use-less-magento-2-template-modules\/\",\"url\":\"https:\/\/webkul.com\/blog\/use-less-magento-2-template-modules\/\",\"name\":\"Use of LESS in magento 2 template and modules\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/use-less-magento-2-template-modules\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/use-less-magento-2-template-modules\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/Magneto-Code-Snippet.png\",\"datePublished\":\"2017-01-18T15:03:26+00:00\",\"dateModified\":\"2026-02-11T13:34:40+00:00\",\"description\":\"That\u2019s all for today in this article, hope it will help you to use LESS in custom modules and templates in magento 2.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/use-less-magento-2-template-modules\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/use-less-magento-2-template-modules\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/use-less-magento-2-template-modules\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/Magneto-Code-Snippet.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/Magneto-Code-Snippet.png\",\"width\":825,\"height\":260,\"caption\":\"Update Mini Cart\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/use-less-magento-2-template-modules\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Use of LESS in Magento 2 Template and Modules\"}]},{\"@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\/c1964884ceb33a5ffdf322ee5424f692\",\"name\":\"Pranjali Goel\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/e670273251719f83735534af186231dd99fbe378466fef356d4e55de5b46244f?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/e670273251719f83735534af186231dd99fbe378466fef356d4e55de5b46244f?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"caption\":\"Pranjali Goel\"},\"description\":\"Believes in simple lifestyle and follow a simple logic to make herself better than yesterday.\",\"url\":\"https:\/\/webkul.com\/blog\/author\/pranjali968\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Use of LESS in magento 2 template and modules","description":"That\u2019s all for today in this article, hope it will help you to use LESS in custom modules and templates in magento 2.","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\/use-less-magento-2-template-modules\/","og_locale":"en_US","og_type":"article","og_title":"Use of LESS in magento 2 template and modules","og_description":"That\u2019s all for today in this article, hope it will help you to use LESS in custom modules and templates in magento 2.","og_url":"https:\/\/webkul.com\/blog\/use-less-magento-2-template-modules\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2017-01-18T15:03:26+00:00","article_modified_time":"2026-02-11T13:34:40+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/Magneto-Code-Snippet.png","type":"image\/png"}],"author":"Pranjali Goel","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Pranjali Goel","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/use-less-magento-2-template-modules\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/use-less-magento-2-template-modules\/"},"author":{"name":"Pranjali Goel","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/c1964884ceb33a5ffdf322ee5424f692"},"headline":"Use of LESS in Magento 2 Template and Modules","datePublished":"2017-01-18T15:03:26+00:00","dateModified":"2026-02-11T13:34:40+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/use-less-magento-2-template-modules\/"},"wordCount":543,"commentCount":2,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/use-less-magento-2-template-modules\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/Magneto-Code-Snippet.png","keywords":["Use of LESS in magento 2 template and modules","webkul"],"articleSection":["Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/use-less-magento-2-template-modules\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/use-less-magento-2-template-modules\/","url":"https:\/\/webkul.com\/blog\/use-less-magento-2-template-modules\/","name":"Use of LESS in magento 2 template and modules","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/use-less-magento-2-template-modules\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/use-less-magento-2-template-modules\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/Magneto-Code-Snippet.png","datePublished":"2017-01-18T15:03:26+00:00","dateModified":"2026-02-11T13:34:40+00:00","description":"That\u2019s all for today in this article, hope it will help you to use LESS in custom modules and templates in magento 2.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/use-less-magento-2-template-modules\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/use-less-magento-2-template-modules\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/use-less-magento-2-template-modules\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/Magneto-Code-Snippet.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/Magneto-Code-Snippet.png","width":825,"height":260,"caption":"Update Mini Cart"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/use-less-magento-2-template-modules\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Use of LESS in Magento 2 Template and Modules"}]},{"@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\/c1964884ceb33a5ffdf322ee5424f692","name":"Pranjali Goel","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/e670273251719f83735534af186231dd99fbe378466fef356d4e55de5b46244f?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e670273251719f83735534af186231dd99fbe378466fef356d4e55de5b46244f?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","caption":"Pranjali Goel"},"description":"Believes in simple lifestyle and follow a simple logic to make herself better than yesterday.","url":"https:\/\/webkul.com\/blog\/author\/pranjali968\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/70770","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\/103"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=70770"}],"version-history":[{"count":5,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/70770\/revisions"}],"predecessor-version":[{"id":525999,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/70770\/revisions\/525999"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/63938"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=70770"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=70770"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=70770"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}