{"id":22293,"date":"2025-09-23T13:00:00","date_gmt":"2025-09-23T07:30:00","guid":{"rendered":"https:\/\/meetanshi.com\/blog\/?p=22293"},"modified":"2025-10-09T17:08:40","modified_gmt":"2025-10-09T11:38:40","slug":"add-number-counter-section-shopify","status":"publish","type":"post","link":"https:\/\/meetanshi.com\/blog\/add-number-counter-section-shopify\/","title":{"rendered":"How to Add a Number Counter Section in Shopify?"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Showcasing real digits fosters customer trust. A number counter section is a simple yet smart way to grab attention and build trust.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In this blog post, learn how to add a number counter section in Shopify using various ways to highlight sales, achievements, or other success numbers.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Ways to Add an Animated Shopify Number Counter<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Shopify doesn\u2019t offer a built-in number counter feature, giving you two direct options: Using the Shopify app or creating a custom code.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The quickest and easiest method is to use a dedicated Shopify app, which can give you ease of use and quicker, better results. It lets you add beautiful, customizable counters to any page without writing a single line of code.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Alternatively, you can create a custom number counter section using Shopify\u2019s Liquid templating along with CSS animations. The only trouble here is to create a code that brings your vision perfectly into your Shopify theme editors. There are high chances of back and forth with a steep learning curve.&nbsp;&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Further, we\u2019ll see the steps for both of them.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Add a Number Counter Section in Shopify (Custom Code)<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Here are the detailed steps to create a number counter section through code.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Create a New Section<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">In your Shopify admin, go to <strong>Online Store &gt; Themes<\/strong> <strong>&gt; \u2026(three dots) &gt; Edit code<\/strong>. In the left-hand sidebar, click the <strong>Sections<\/strong> to add a new section.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Save it as <strong>animated-number-counter.liquid<\/strong>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Add the Liquid Code<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Paste the following code in the newly created animated-number-counter.liquid section.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">{{ 'animated-number-counter.css' | asset_url | stylesheet_tag }}\n{{ 'animated-number-counter.js' | asset_url | script_tag }}\n\n&lt;div class=\"animated-counter-section\">\n  &lt;div class=\"page-width\">\n    {%- for block in section.blocks -%}\n      &lt;div class=\"counter-block\">\n        &lt;div class=\"number-counter\" data-target=\"{{ block.settings.target_number }}\">\n          0\n        &lt;\/div>\n        &lt;p class=\"counter-label\">{{ block.settings.label }}&lt;\/p>\n      &lt;\/div>\n    {%- endfor -%}\n  &lt;\/div>\n&lt;\/div>\n\n{% schema %}\n{\n  \"name\": \"Animated Number Counter\",\n  \"settings\": [],\n  \"blocks\": [\n    {\n      \"type\": \"number\",\n      \"name\": \"Number Item\",\n      \"settings\": [\n        {\n          \"type\": \"text\",\n          \"id\": \"label\",\n          \"label\": \"Label\",\n          \"default\": \"Happy Customers\"\n        },\n        {\n          \"type\": \"number\",\n          \"id\": \"target_number\",\n          \"label\": \"Target Number\",\n          \"default\": 100\n        }\n      ]\n    }\n  ],\n  \"presets\": [\n    {\n      \"name\": \"Animated Number Counter\",\n      \"category\": \"Text\",\n      \"blocks\": [\n        {\n          \"type\": \"number\"\n        },\n        {\n          \"type\": \"number\"\n        },\n        {\n          \"type\": \"number\"\n        }\n      ]\n    }\n  ]\n}\n{% endschema %}\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Create a CSS file &amp; JavaScript File<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Still in the left-hand sidebar, click the <strong>Assets <\/strong>and<strong> <\/strong>create a new one with the file name <strong>animated-number-counter.css.<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Then paste the following code into the CSS file we created.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">.animated-counter-section {\n  display: flex;\n  justify-content: center;\n  align-items: center;\n  padding: 50px 0;\n  text-align: center;\n}\n\n.counter-block {\n  flex: 1;\n  padding: 20px;\n}\n\n.number-counter {\n  font-size: 4rem;\n  font-weight: bold;\n  color: #333;\n  margin-bottom: 10px;\n}\n\n.counter-label {\n  font-size: 1.25rem;\n  color: #666;\n}\n<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Add one more file and save it as <strong>animated-number-counter.js <\/strong>from the Assets section.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Paste the following JavaScript code into the file.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">document.addEventListener('DOMContentLoaded', () => {\n  const counters = document.querySelectorAll('.number-counter');\n  const speed = 200; \/\/ The higher the number, the slower the speed\n\n  counters.forEach(counter => {\n    const updateCount = () => {\n      const target = +counter.getAttribute('data-target');\n      const count = +counter.innerText;\n      const increment = target \/ speed;\n\n      if (count &lt; target) {\n        counter.innerText = Math.ceil(count + increment);\n        setTimeout(updateCount, 1);\n      } else {\n        counter.innerText = target;\n      }\n    };\n\n    updateCount();\n  });\n});\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4: Add a Section From the Theme Editor<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Go back to <strong>Online Store &gt; Themes<\/strong> <strong>&gt;<\/strong> <strong>Customize<\/strong>. Click on the <strong>Add section<\/strong>, and you will see your new section, <strong>Animated Number Counter. <\/strong>Select it to add.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"564\" height=\"297\" src=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/add-section-6.png\" alt=\"select the Animated Number Counter to from the theme editor.\" class=\"wp-image-22318\" srcset=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/add-section-6.png 564w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/add-section-6-250x132.png 250w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/add-section-6-403x212.png 403w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/add-section-6-120x63.png 120w\" sizes=\"auto, (max-width: 564px) 100vw, 564px\" \/><\/figure>\n<\/div>\n\n\n<p class=\"wp-block-paragraph\">Then use the sidebar to set number blocks, labels, and targets for the section.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"700\" height=\"305\" src=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/edit-section-4-700x305.png\" alt=\"Editing a Shopify number counter section in the theme editor\" class=\"wp-image-22320\" srcset=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/edit-section-4-700x305.png 700w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/edit-section-4-250x109.png 250w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/edit-section-4-768x334.png 768w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/edit-section-4-403x176.png 403w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/edit-section-4-964x420.png 964w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/edit-section-4-120x52.png 120w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/edit-section-4.png 1396w\" sizes=\"auto, (max-width: 700px) 100vw, 700px\" \/><\/figure>\n<\/div>\n\n\n<h3 class=\"wp-block-heading\">Step 5: Save &amp; Preview&nbsp;<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Once you add the changes, save them and preview the section in your storefront. This is how it will showcase the number counter with basic details.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"700\" height=\"458\" src=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/preview-2-700x458.png\" alt=\"Preview of the number counter section using custom code.\" class=\"wp-image-22322\" srcset=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/preview-2-700x458.png 700w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/preview-2-250x164.png 250w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/preview-2-768x503.png 768w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/preview-2-403x264.png 403w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/preview-2-120x79.png 120w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/preview-2.png 929w\" sizes=\"auto, (max-width: 700px) 100vw, 700px\" \/><\/figure>\n<\/div>\n\n\n<h2 class=\"wp-block-heading\">Directly Add Shopify Number Counter Section<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Using the app method, you will be able to create an advanced-level number counter section with extra details and higher customization.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Similar to this one.&nbsp;&nbsp;<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"700\" height=\"277\" src=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/MIT-preview-6-700x277.png\" alt=\"Preview of the Shopify number counter section using an app\" class=\"wp-image-22324\" srcset=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/MIT-preview-6-700x277.png 700w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/MIT-preview-6-250x99.png 250w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/MIT-preview-6-768x303.png 768w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/MIT-preview-6-403x159.png 403w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/MIT-preview-6-964x381.png 964w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/MIT-preview-6-120x47.png 120w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/MIT-preview-6.png 1245w\" sizes=\"auto, (max-width: 700px) 100vw, 700px\" \/><\/figure>\n<\/div>\n\n\n<p class=\"wp-block-paragraph\">To get a section exactly like this, opt for the <strong>MIT Sections Pro <\/strong>app, which gives a vast area of customization and beautiful in-built features, and the plus point is that no coding is needed.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Let\u2019s see the steps to use the app to add a number counter section.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Install and Find the Section<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Install the<a href=\"https:\/\/apps.shopify.com\/mit-custom-sections\" target=\"_blank\" rel=\"noopener\"> MIT Sections Pro<\/a> app from the Shopify App Store. Then, from the app dashboard, click <strong>Browse sections <\/strong>and search for the <strong>Number counter<\/strong> section.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"700\" height=\"485\" src=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/browse-section-6-700x485.png\" alt=\"A search for &quot;number counter&quot; shows multiple options.\" class=\"wp-image-22326\" srcset=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/browse-section-6-700x485.png 700w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/browse-section-6-250x173.png 250w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/browse-section-6-768x532.png 768w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/browse-section-6-403x279.png 403w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/browse-section-6-120x83.png 120w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/browse-section-6.png 870w\" sizes=\"auto, (max-width: 700px) 100vw, 700px\" \/><\/figure>\n<\/div>\n\n\n<p class=\"wp-block-paragraph\">Here, you get multiple options to choose from, and we will go ahead with the <strong>Number counter 1.<\/strong><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Click on the &#8220;Try for Free&#8221; Button<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Click on the <strong>Try for Free <\/strong>button to view this section and see how it will look before buying it.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"700\" height=\"329\" src=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/try-for-free-5-700x329.png\" alt=\"Selecting try for free in the number counter section.\" class=\"wp-image-22328\" srcset=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/try-for-free-5-700x329.png 700w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/try-for-free-5-250x117.png 250w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/try-for-free-5-768x361.png 768w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/try-for-free-5-403x189.png 403w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/try-for-free-5-120x56.png 120w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/try-for-free-5.png 945w\" sizes=\"auto, (max-width: 700px) 100vw, 700px\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">During your free trial, you&#8217;ll be directed to the MIT demo store. Once you&#8217;ve purchased the section, you can add it to your store&#8217;s theme.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To do this, go to <strong>My section<\/strong> and click the <strong>Apply to theme<\/strong> button on the purchased section. Then, click <strong>Customize theme<\/strong> and select your store theme.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This will take you to the theme editor, where the remaining steps are the same as described below.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Add Section &amp; Save<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">From here, click the <strong>Add section <\/strong>and select <strong>Meetanshi Number Counter 1.&nbsp;<\/strong><\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"564\" height=\"220\" src=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/mit-add-section-4.png\" alt=\"choosing a &quot;Meetanshi Number Counter&quot; to add a section in Shopify \n\n\" class=\"wp-image-22330\" srcset=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/mit-add-section-4.png 564w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/mit-add-section-4-250x98.png 250w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/mit-add-section-4-403x157.png 403w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/mit-add-section-4-120x47.png 120w\" sizes=\"auto, (max-width: 564px) 100vw, 564px\" \/><\/figure>\n<\/div>\n\n\n<p class=\"wp-block-paragraph\">Then, from here, you get 20+ modification options to make changes as you want.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"700\" height=\"363\" src=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/mit-edit-section-1-700x363.png\" alt=\"Editing a Shopify number counter section in the theme editor. \" class=\"wp-image-22332\" srcset=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/mit-edit-section-1-700x363.png 700w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/mit-edit-section-1-250x130.png 250w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/mit-edit-section-1-768x399.png 768w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/mit-edit-section-1-403x209.png 403w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/mit-edit-section-1-964x500.png 964w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/mit-edit-section-1-120x62.png 120w, https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/09\/mit-edit-section-1.png 1399w\" sizes=\"auto, (max-width: 700px) 100vw, 700px\" \/><\/figure>\n<\/div>\n\n\n<p class=\"wp-block-paragraph\"><strong>Save <\/strong>the changes and showcase your success numbers in a much attractive manner.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Shopify Sections App vs. Custom Code: What&#8217;s Right for You?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The major difference between using a Shopify Sections App and custom coding is ease of use.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">While custom code gives you complete flexibility, it requires strong technical skills or developer assistance, and of course, it\u2019s time-consuming.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">On the other hand, a Shopify Sections App like MIT Sections Pro makes advanced customization accessible to everyone, such as sections that can be edited within a few clicks, high compatibility, a variety of sections, no coding required, and more.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Here\u2019s why our app is the smarter choice:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Start customizing your store right away without any upfront cost<\/li>\n\n\n\n<li>Choose from a wide variety of product comparison tables, banners, testimonials, FAQs, and more to cover all major storefront needs<\/li>\n\n\n\n<li>Add or swap sections on any page instantly, without hiring developers<\/li>\n\n\n\n<li>Works smoothly with all Shopify themes and keeps your store\u2019s speed optimized for the best customer experience<\/li>\n\n\n\n<li>Update your store\u2019s design as your business grows, ensuring the UI evolves with your brand<\/li>\n\n\n\n<li>Explore the demo to see how the app fits your store\u2019s personality before making any commitments<\/li>\n<\/ul>\n\n\n<div class=\"meetanshi-cta\">\r\n<div class=\"cta-content-wrapper\">\r\n<span>130+ Shopify Sections<\/span>\r\n<p>Your all-in-one solution to create a professional Shopify store<\/p>\r\n<a href=\"https:\/\/apps.shopify.com\/mit-custom-sections\" target=\"_blank\" class=\"btn-primary\" rel=\"noopener\">Install App Now<\/a>\r\n<\/div>\r\n<div class=\"cta-image-new\">\r\n<img decoding=\"async\" src=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/11\/mit-sections-pro.png\" alt=\"MIT Sections Pro\">\r\n<\/div>\r\n<\/div>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Showcasing real digits fosters customer trust. A number counter section is a simple yet smart way to grab attention and build trust.&nbsp; In this blog&#8230;<\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[787],"tags":[],"class_list":["post-22293","post","type-post","status-publish","format-standard","hentry","category-shopify"],"acf":[],"_links":{"self":[{"href":"https:\/\/meetanshi.com\/blog\/wp-json\/wp\/v2\/posts\/22293","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/meetanshi.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/meetanshi.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/meetanshi.com\/blog\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/meetanshi.com\/blog\/wp-json\/wp\/v2\/comments?post=22293"}],"version-history":[{"count":4,"href":"https:\/\/meetanshi.com\/blog\/wp-json\/wp\/v2\/posts\/22293\/revisions"}],"predecessor-version":[{"id":23673,"href":"https:\/\/meetanshi.com\/blog\/wp-json\/wp\/v2\/posts\/22293\/revisions\/23673"}],"wp:attachment":[{"href":"https:\/\/meetanshi.com\/blog\/wp-json\/wp\/v2\/media?parent=22293"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/meetanshi.com\/blog\/wp-json\/wp\/v2\/categories?post=22293"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/meetanshi.com\/blog\/wp-json\/wp\/v2\/tags?post=22293"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}