{"id":86609,"date":"2017-06-16T15:03:06","date_gmt":"2017-06-16T15:03:06","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=86609"},"modified":"2024-04-01T08:58:20","modified_gmt":"2024-04-01T08:58:20","slug":"create-dynamic-variables-using-loop-less","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/create-dynamic-variables-using-loop-less\/","title":{"rendered":"Create dynamic variables using loop in Less"},"content":{"rendered":"\n<p><strong>Create dynamic variables using loop in Less<\/strong> <\/p>\n\n\n\n<p>I hope you have gone through my previous blogs related to <a href=\"https:\/\/webkul.com\/blog\/getting-started-with-less-gruntjs-and-magento2\/\">Less<\/a>. So based on that I came up with a new blog today, in which I will explain that how you can create dynamic variables in your Less file. So here is a less code to generate dynamic variables.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">@suffix: &#039;px&#039;;\n\n.mixin-loop(10,&#039;temp&#039;); \/\/ this will iterate from 10 to 1\n\n.mixin-loop (@i,@j) when (@i &gt; 0) { \/\/on first call, @i = 10 and @j = &#039;temp&#039;\n\n    @tmp:~&quot;@@{j}_@{i}@{suffix}&quot;; \/\/ it will give @temp_10px\n    @{tmp}: @i\/16rem;            \/\/ now in variable @temp_10px: 0.625rem\n\n    .mixin-loop(@i - 1,@j); \/\/calling mixin again with decrement of 1 in @i\n}<\/pre>\n\n\n\n<p>In above example,&nbsp;I called a mixin with two arguments, you can add more depending on your need. So when mixin is called there is a condition in it which checks the value of <strong>@i<\/strong> is greater than <strong>0<\/strong> or not. If the value is greater than <strong>0<\/strong> then it flows inside and create dynamic variable and then again calls itself till when the condition become false.<\/p>\n\n\n\n<p>In the body of mixin, I have written a line of code which is generating dynamic variable, i.e, <strong><em>@tmp:~&#8221;@@{j}_@{i}@{suffix}&#8221;;<\/em><\/strong><\/p>\n\n\n\n<p>Lets understand this code for its first iteration when <em><strong>@i=10<\/strong><\/em> and <em><strong>@j=&#8217;temp&#8217;<\/strong><\/em> and <em><strong>@suffix=&#8217;px&#8217;<\/strong><\/em>. Put the respective values of variables, i.e.<\/p>\n\n\n\n<p><strong>@tmp:~&#8221;@temp_10px&#8221;;<\/strong> &nbsp; &nbsp; &nbsp; \/\/<em>@tmp:~&#8221;@@{j}_@{i}@{suffix}&#8221;;<\/em><\/p>\n\n\n\n<p>now <strong>@tmp<\/strong> variable contains the string <strong>&#8220;@temp_10px&#8221;<\/strong><\/p>\n\n\n\n<p>Lets consider second line, i.e. <strong>@{tmp}: @i\/16rem;<\/strong><\/p>\n\n\n\n<p>in this code, replace the value of <strong>@tmp<\/strong> variable with its value, i.e. <strong>@temp_10px : 10\/16rem;<\/strong><\/p>\n\n\n\n<p>finally, <strong>@temp_10px: 0.625rem;<\/strong><\/p>\n\n\n\n<p>and then I &nbsp;again called mixin with decrement&nbsp;of <strong>1<\/strong> in first argument so that loop continues till the condition become false. Finally following CSS will be generated from the above LESS code.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">@temp_10px: 0.625rem;\n@temp_9px: 0.5625rem;\n@temp_8px: 0.5rem;\n@temp_7px: 0.4375rem;\n@temp_6px: 0.375rem;\n@temp_5px: 0.3125rem;\n@temp_4px: 0.25rem;\n@temp_3px: 0.1875rem;\n@temp_2px: 0.125rem;\n@temp_1px: 0.0625rem;<\/pre>\n\n\n\n<p>You can change\/modify variables&nbsp;name depending on your need, this is only for those who do not want no calculate the font pixels in rem unit manually. So the formula is written in it and then it generates the equivalent unit in rem from px.<\/p>\n\n\n\n<p>So that&#8217;s it in today&#8217;s article. &nbsp;Try this and if you have any query then just comment below \ud83d\ude42<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Create dynamic variables using loop in Less I hope you have gone through my previous blogs related to Less. So based on that I came up with a new blog today, in which I will explain that how you can create dynamic variables in your Less file. So here is a less code to generate <a href=\"https:\/\/webkul.com\/blog\/create-dynamic-variables-using-loop-less\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":103,"featured_media":80140,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8,302],"tags":[4434,4231,4376,4192],"class_list":["post-86609","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-magento","category-magento2","tag-advantages-of-using-less","tag-use-of-less-in-magento-2","tag-use-of-less-in-magento-2-template-and-modules","tag-what-is-less"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Create dynamic variables using loop in Less - Webkul Blog<\/title>\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-dynamic-variables-using-loop-less\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Create dynamic variables using loop in Less - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Create dynamic variables using loop in Less I hope you have gone through my previous blogs related to Less. So based on that I came up with a new blog today, in which I will explain that how you can create dynamic variables in your Less file. So here is a less code to generate [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/create-dynamic-variables-using-loop-less\/\" \/>\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-06-16T15:03:06+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-01T08:58:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/04\/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=\"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-dynamic-variables-using-loop-less\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-dynamic-variables-using-loop-less\/\"},\"author\":{\"name\":\"Pranjali Goel\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/c1964884ceb33a5ffdf322ee5424f692\"},\"headline\":\"Create dynamic variables using loop in Less\",\"datePublished\":\"2017-06-16T15:03:06+00:00\",\"dateModified\":\"2024-04-01T08:58:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-dynamic-variables-using-loop-less\/\"},\"wordCount\":325,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-dynamic-variables-using-loop-less\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/04\/Magneto-Code-Snippet.png\",\"keywords\":[\"Advantages of using LESS\",\"Use of LESS in magento 2\",\"Use of LESS in magento 2 template and modules\",\"What is Less ?\"],\"articleSection\":[\"magento\",\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/create-dynamic-variables-using-loop-less\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/create-dynamic-variables-using-loop-less\/\",\"url\":\"https:\/\/webkul.com\/blog\/create-dynamic-variables-using-loop-less\/\",\"name\":\"Create dynamic variables using loop in Less - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-dynamic-variables-using-loop-less\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-dynamic-variables-using-loop-less\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/04\/Magneto-Code-Snippet.png\",\"datePublished\":\"2017-06-16T15:03:06+00:00\",\"dateModified\":\"2024-04-01T08:58:20+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-dynamic-variables-using-loop-less\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/create-dynamic-variables-using-loop-less\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/create-dynamic-variables-using-loop-less\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/04\/Magneto-Code-Snippet.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/04\/Magneto-Code-Snippet.png\",\"width\":825,\"height\":260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/create-dynamic-variables-using-loop-less\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Create dynamic variables using loop in Less\"}]},{\"@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":"Create dynamic variables using loop in Less - Webkul Blog","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-dynamic-variables-using-loop-less\/","og_locale":"en_US","og_type":"article","og_title":"Create dynamic variables using loop in Less - Webkul Blog","og_description":"Create dynamic variables using loop in Less I hope you have gone through my previous blogs related to Less. So based on that I came up with a new blog today, in which I will explain that how you can create dynamic variables in your Less file. So here is a less code to generate [...]","og_url":"https:\/\/webkul.com\/blog\/create-dynamic-variables-using-loop-less\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2017-06-16T15:03:06+00:00","article_modified_time":"2024-04-01T08:58:20+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/04\/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":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/create-dynamic-variables-using-loop-less\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/create-dynamic-variables-using-loop-less\/"},"author":{"name":"Pranjali Goel","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/c1964884ceb33a5ffdf322ee5424f692"},"headline":"Create dynamic variables using loop in Less","datePublished":"2017-06-16T15:03:06+00:00","dateModified":"2024-04-01T08:58:20+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/create-dynamic-variables-using-loop-less\/"},"wordCount":325,"commentCount":2,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/create-dynamic-variables-using-loop-less\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/04\/Magneto-Code-Snippet.png","keywords":["Advantages of using LESS","Use of LESS in magento 2","Use of LESS in magento 2 template and modules","What is Less ?"],"articleSection":["magento","Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/create-dynamic-variables-using-loop-less\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/create-dynamic-variables-using-loop-less\/","url":"https:\/\/webkul.com\/blog\/create-dynamic-variables-using-loop-less\/","name":"Create dynamic variables using loop in Less - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/create-dynamic-variables-using-loop-less\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/create-dynamic-variables-using-loop-less\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/04\/Magneto-Code-Snippet.png","datePublished":"2017-06-16T15:03:06+00:00","dateModified":"2024-04-01T08:58:20+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/create-dynamic-variables-using-loop-less\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/create-dynamic-variables-using-loop-less\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/create-dynamic-variables-using-loop-less\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/04\/Magneto-Code-Snippet.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/04\/Magneto-Code-Snippet.png","width":825,"height":260},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/create-dynamic-variables-using-loop-less\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Create dynamic variables using loop in Less"}]},{"@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\/86609","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=86609"}],"version-history":[{"count":4,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/86609\/revisions"}],"predecessor-version":[{"id":430353,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/86609\/revisions\/430353"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/80140"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=86609"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=86609"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=86609"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}