{"id":460,"date":"2025-01-27T12:10:09","date_gmt":"2025-01-27T12:10:09","guid":{"rendered":"https:\/\/codingindialab.com\/blog\/?p=460"},"modified":"2026-04-06T04:57:41","modified_gmt":"2026-04-06T04:57:41","slug":"how-to-make-sticky-section-in-elementor-for-free","status":"publish","type":"post","link":"https:\/\/codingindialab.com\/blog\/how-to-make-sticky-section-in-elementor-for-free\/","title":{"rendered":"How to make Sticky Section in Elementor for free?"},"content":{"rendered":"<p>Adding a sticky section to your Elementor Free creates a very professional and practical look for your site. Though the default functions that are added to Elementor Pro already make sure the elements could be set sticky, it&#8217;s easily achieved within the free version as well using some minor custom CSS along with a touch of jQuery. Just to help, I&#8217;m listing here how you could achieve it in detail on the section that has been used below using the example code.<\/p>\n<h2>Steps to Create a Section Sticky in Elementor Free<\/h2>\n<h3>1. Understand the Structure<\/h3>\n<p>Before the code, let&#8217;s break down the structure first:<\/p>\n<p>Header on top<\/p>\n<p>Two-column layout where the content will be on the left side and sticky form on the right side. This sticky form will stay inside the viewport when scrolling over the content.<\/p>\n<h3>2. Basic HTML Structure<\/h3>\n<p>&lt;section class=&#8221;banner&#8221;&gt;<br \/>\n&lt;h1&gt;Welcome to the Banner Section&lt;\/h1&gt;<br \/>\n&lt;\/section&gt;<\/p>\n<p>&lt;section id=&#8221;content&#8221; class=&#8221;content&#8221;&gt;<br \/>\n&lt;div class=&#8221;text&#8221;&gt;<br \/>\n&lt;p&gt;Your content goes here&#8230;&lt;\/p&gt;<br \/>\n&lt;!&#8211; Add more content as needed &#8211;&gt;<br \/>\n&lt;\/div&gt;<\/p>\n<p>&lt;div class=&#8221;form-container&#8221;&gt;<br \/>\n&lt;form id=&#8221;sticky-form&#8221;&gt;<br \/>\n&lt;h3&gt;Contact Us&lt;\/h3&gt;<br \/>\n&lt;label for=&#8221;name&#8221;&gt;Full Name&lt;\/label&gt;<br \/>\n&lt;input type=&#8221;text&#8221; id=&#8221;name&#8221; name=&#8221;name&#8221; required&gt;<\/p>\n<p>&lt;label for=&#8221;email&#8221;&gt;Email&lt;\/label&gt;<br \/>\n&lt;input type=&#8221;email&#8221; id=&#8221;email&#8221; name=&#8221;email&#8221; required&gt;<\/p>\n<p>&lt;button type=&#8221;submit&#8221;&gt;Submit&lt;\/button&gt;<br \/>\n&lt;\/form&gt;<br \/>\n&lt;\/div&gt;<br \/>\n&lt;\/section&gt;<\/p>\n<p>Here is a simple HTML layout for the sticky section:<\/p>\n<p>This structure has a header, a text element, and a form that sticks to the right-hand side upon scrolling.<\/p>\n<h3>3. Add Custom CSS<\/h3>\n<p>The following CSS styles will make the structure responsive as well as the sticky form behave as expected.<\/p>\n<p>.banner {<br \/>\nbackground: #007bff;<br \/>\ncolor: white;<br \/>\ntext-align: center;<br \/>\npadding: 50px 0;<br \/>\n}<\/p>\n<p>.content {<br \/>\ndisplay: flex;<br \/>\njustify-content: space-between;<br \/>\npadding: 50px 20px;<br \/>\nmax-width: 1200px;<br \/>\nmargin: 0 auto;<br \/>\n}<\/p>\n<p>.text {<br \/>\nflex: 2;<br \/>\n}<\/p>\n<p>.form-container {<br \/>\nflex: 1;<br \/>\nposition: relative;<br \/>\n}<\/p>\n<p>#sticky-form {<br \/>\nbackground: #f8f9fa;<br \/>\npadding: 20px;<br \/>\nborder: 1px solid #ddd;<br \/>\nborder-radius: 8px;<br \/>\nbox-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);<br \/>\n}<\/p>\n<p>.fixed {<br \/>\nposition: fixed;<br \/>\ntop: 20px;<br \/>\nz-index: 10;<br \/>\n}<\/p>\n<h3>4. Add jQuery for Sticky Behavior<\/h3>\n<p>The form is set to be sticky by adding the following jQuery snippet:<\/p>\n<p>&lt;script src=&#8221;https:\/\/code.jquery.com\/jquery-3.6.0.min.js&#8221;&gt;&lt;\/script&gt;<br \/>\njQuery(document).ready(function () {<br \/>\nconst form = jQuery(&#8216;#sticky-form&#8217;);<br \/>\nconst container = jQuery(&#8216;.form-container&#8217;);<br \/>\nconst offsetTop = container.offset().top;<\/p>\n<p>jQuery(window).on(&#8216;scroll&#8217;, function () {<br \/>\nconst scrollTop = $(window).scrollTop();<\/p>\n<p>if (scrollTop &gt; offsetTop) {<br \/>\nform.addClass(&#8216;fixed&#8217;);<br \/>\n} else {<br \/>\nform.removeClass(&#8216;fixed&#8217;);<br \/>\n}<br \/>\n});<br \/>\n});<\/p>\n<p>This script calculates the top offset of the form container. Adds a class .fixed when the user scrolls past the container&#8217;s position.<\/p>\n<h3>5. Test Responsiveness<\/h3>\n<p>Test the sticky section perfectly on all devices. This CSS includes the media query. It would switch up the layout on the small screens. For instance, if width 768px, then it would have one-column view.<\/p>\n<h3>6. Adding this to Elementor Free<\/h3>\n<p>In Elementor Free, do the following:<\/p>\n<ul>\n<li>Create a two-column section.<\/li>\n<li>Insert your text content into the left column.<\/li>\n<li>Insert your form (using a shortcode or HTML widget) into the right column.<\/li>\n<li>Open the section&#8217;s settings and add the following CSS in the <strong>Advanced<\/strong> &gt; <strong>Custom CSS tab<\/strong> (if available). For free users, add the CSS to your theme&#8217;s stylesheet or a customizer.<\/li>\n<li>Put the jQuery script in the Custom Scripts or the footer file of your theme.<\/li>\n<\/ul>\n<h3>7. Live Preview and Fine-Tuning<\/h3>\n<p>Save your modifications and preview the mode on. Now your form will scroll behind your sidebar. If the results are not ideal, fine-tune the CSS and JavaScript codes as per your layout.<\/p>\n<p>Thus, there is a sticky section in the Elementor free version, so you can produce an excellent experience on your site.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Adding a sticky section to your Elementor Free creates a very professional and practical look&#8230;<\/p>\n","protected":false},"author":1,"featured_media":461,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[19],"tags":[],"class_list":["post-460","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-wordpress"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to make Sticky Section in Elementor for free?<\/title>\n<meta name=\"description\" content=\"Learn how to create a sticky section in Elementor Free with custom CSS and jQuery. This step-by-step guide helps you add a responsive sticky.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codingindialab.com\/blog\/how-to-make-sticky-section-in-elementor-for-free\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to make Sticky Section in Elementor for free?\" \/>\n<meta property=\"og:description\" content=\"Learn how to create a sticky section in Elementor Free with custom CSS and jQuery. This step-by-step guide helps you add a responsive sticky.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codingindialab.com\/blog\/how-to-make-sticky-section-in-elementor-for-free\/\" \/>\n<meta property=\"og:site_name\" content=\"Buy Tools - Coding India Lab\" \/>\n<meta property=\"article:published_time\" content=\"2025-01-27T12:10:09+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-06T04:57:41+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codingindialab.com\/blog\/wp-content\/uploads\/2025\/01\/How-to-make-sticky-section-in-Elementor-for-free.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"900\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\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:\\\/\\\/codingindialab.com\\\/blog\\\/how-to-make-sticky-section-in-elementor-for-free\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codingindialab.com\\\/blog\\\/how-to-make-sticky-section-in-elementor-for-free\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/codingindialab.com\\\/blog\\\/#\\\/schema\\\/person\\\/94a2d1f0e37a9a178ed9cd0a3aa7f3ce\"},\"headline\":\"How to make Sticky Section in Elementor for free?\",\"datePublished\":\"2025-01-27T12:10:09+00:00\",\"dateModified\":\"2026-04-06T04:57:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/codingindialab.com\\\/blog\\\/how-to-make-sticky-section-in-elementor-for-free\\\/\"},\"wordCount\":650,\"image\":{\"@id\":\"https:\\\/\\\/codingindialab.com\\\/blog\\\/how-to-make-sticky-section-in-elementor-for-free\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/codingindialab.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/01\\\/How-to-make-sticky-section-in-Elementor-for-free.webp?fit=1920%2C900&ssl=1\",\"articleSection\":[\"WordPress\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/codingindialab.com\\\/blog\\\/how-to-make-sticky-section-in-elementor-for-free\\\/\",\"url\":\"https:\\\/\\\/codingindialab.com\\\/blog\\\/how-to-make-sticky-section-in-elementor-for-free\\\/\",\"name\":\"How to make Sticky Section in Elementor for free?\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codingindialab.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/codingindialab.com\\\/blog\\\/how-to-make-sticky-section-in-elementor-for-free\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/codingindialab.com\\\/blog\\\/how-to-make-sticky-section-in-elementor-for-free\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/codingindialab.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/01\\\/How-to-make-sticky-section-in-Elementor-for-free.webp?fit=1920%2C900&ssl=1\",\"datePublished\":\"2025-01-27T12:10:09+00:00\",\"dateModified\":\"2026-04-06T04:57:41+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/codingindialab.com\\\/blog\\\/#\\\/schema\\\/person\\\/94a2d1f0e37a9a178ed9cd0a3aa7f3ce\"},\"description\":\"Learn how to create a sticky section in Elementor Free with custom CSS and jQuery. This step-by-step guide helps you add a responsive sticky.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/codingindialab.com\\\/blog\\\/how-to-make-sticky-section-in-elementor-for-free\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/codingindialab.com\\\/blog\\\/how-to-make-sticky-section-in-elementor-for-free\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codingindialab.com\\\/blog\\\/how-to-make-sticky-section-in-elementor-for-free\\\/#primaryimage\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/codingindialab.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/01\\\/How-to-make-sticky-section-in-Elementor-for-free.webp?fit=1920%2C900&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/codingindialab.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/01\\\/How-to-make-sticky-section-in-Elementor-for-free.webp?fit=1920%2C900&ssl=1\",\"width\":1920,\"height\":900,\"caption\":\"How to make sticky section in Elementor for free?\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/codingindialab.com\\\/blog\\\/how-to-make-sticky-section-in-elementor-for-free\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/codingindialab.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to make Sticky Section in Elementor for free?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/codingindialab.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/codingindialab.com\\\/blog\\\/\",\"name\":\"Coding India\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/codingindialab.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/codingindialab.com\\\/blog\\\/#\\\/schema\\\/person\\\/94a2d1f0e37a9a178ed9cd0a3aa7f3ce\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/cd5a9365f6d133d34466f8b64e07682be41ad59e15e64b8bda642df41823202e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/cd5a9365f6d133d34466f8b64e07682be41ad59e15e64b8bda642df41823202e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/cd5a9365f6d133d34466f8b64e07682be41ad59e15e64b8bda642df41823202e?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"https:\\\/\\\/codingindialab.com\\\/blog\"],\"url\":\"https:\\\/\\\/codingindialab.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to make Sticky Section in Elementor for free?","description":"Learn how to create a sticky section in Elementor Free with custom CSS and jQuery. This step-by-step guide helps you add a responsive sticky.","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:\/\/codingindialab.com\/blog\/how-to-make-sticky-section-in-elementor-for-free\/","og_locale":"en_US","og_type":"article","og_title":"How to make Sticky Section in Elementor for free?","og_description":"Learn how to create a sticky section in Elementor Free with custom CSS and jQuery. This step-by-step guide helps you add a responsive sticky.","og_url":"https:\/\/codingindialab.com\/blog\/how-to-make-sticky-section-in-elementor-for-free\/","og_site_name":"Buy Tools - Coding India Lab","article_published_time":"2025-01-27T12:10:09+00:00","article_modified_time":"2026-04-06T04:57:41+00:00","og_image":[{"width":1920,"height":900,"url":"https:\/\/codingindialab.com\/blog\/wp-content\/uploads\/2025\/01\/How-to-make-sticky-section-in-Elementor-for-free.webp","type":"image\/webp"}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/codingindialab.com\/blog\/how-to-make-sticky-section-in-elementor-for-free\/#article","isPartOf":{"@id":"https:\/\/codingindialab.com\/blog\/how-to-make-sticky-section-in-elementor-for-free\/"},"author":{"name":"admin","@id":"https:\/\/codingindialab.com\/blog\/#\/schema\/person\/94a2d1f0e37a9a178ed9cd0a3aa7f3ce"},"headline":"How to make Sticky Section in Elementor for free?","datePublished":"2025-01-27T12:10:09+00:00","dateModified":"2026-04-06T04:57:41+00:00","mainEntityOfPage":{"@id":"https:\/\/codingindialab.com\/blog\/how-to-make-sticky-section-in-elementor-for-free\/"},"wordCount":650,"image":{"@id":"https:\/\/codingindialab.com\/blog\/how-to-make-sticky-section-in-elementor-for-free\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/codingindialab.com\/blog\/wp-content\/uploads\/2025\/01\/How-to-make-sticky-section-in-Elementor-for-free.webp?fit=1920%2C900&ssl=1","articleSection":["WordPress"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/codingindialab.com\/blog\/how-to-make-sticky-section-in-elementor-for-free\/","url":"https:\/\/codingindialab.com\/blog\/how-to-make-sticky-section-in-elementor-for-free\/","name":"How to make Sticky Section in Elementor for free?","isPartOf":{"@id":"https:\/\/codingindialab.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codingindialab.com\/blog\/how-to-make-sticky-section-in-elementor-for-free\/#primaryimage"},"image":{"@id":"https:\/\/codingindialab.com\/blog\/how-to-make-sticky-section-in-elementor-for-free\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/codingindialab.com\/blog\/wp-content\/uploads\/2025\/01\/How-to-make-sticky-section-in-Elementor-for-free.webp?fit=1920%2C900&ssl=1","datePublished":"2025-01-27T12:10:09+00:00","dateModified":"2026-04-06T04:57:41+00:00","author":{"@id":"https:\/\/codingindialab.com\/blog\/#\/schema\/person\/94a2d1f0e37a9a178ed9cd0a3aa7f3ce"},"description":"Learn how to create a sticky section in Elementor Free with custom CSS and jQuery. This step-by-step guide helps you add a responsive sticky.","breadcrumb":{"@id":"https:\/\/codingindialab.com\/blog\/how-to-make-sticky-section-in-elementor-for-free\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codingindialab.com\/blog\/how-to-make-sticky-section-in-elementor-for-free\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codingindialab.com\/blog\/how-to-make-sticky-section-in-elementor-for-free\/#primaryimage","url":"https:\/\/i0.wp.com\/codingindialab.com\/blog\/wp-content\/uploads\/2025\/01\/How-to-make-sticky-section-in-Elementor-for-free.webp?fit=1920%2C900&ssl=1","contentUrl":"https:\/\/i0.wp.com\/codingindialab.com\/blog\/wp-content\/uploads\/2025\/01\/How-to-make-sticky-section-in-Elementor-for-free.webp?fit=1920%2C900&ssl=1","width":1920,"height":900,"caption":"How to make sticky section in Elementor for free?"},{"@type":"BreadcrumbList","@id":"https:\/\/codingindialab.com\/blog\/how-to-make-sticky-section-in-elementor-for-free\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codingindialab.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to make Sticky Section in Elementor for free?"}]},{"@type":"WebSite","@id":"https:\/\/codingindialab.com\/blog\/#website","url":"https:\/\/codingindialab.com\/blog\/","name":"Coding India","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codingindialab.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/codingindialab.com\/blog\/#\/schema\/person\/94a2d1f0e37a9a178ed9cd0a3aa7f3ce","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/cd5a9365f6d133d34466f8b64e07682be41ad59e15e64b8bda642df41823202e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/cd5a9365f6d133d34466f8b64e07682be41ad59e15e64b8bda642df41823202e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/cd5a9365f6d133d34466f8b64e07682be41ad59e15e64b8bda642df41823202e?s=96&d=mm&r=g","caption":"admin"},"sameAs":["https:\/\/codingindialab.com\/blog"],"url":"https:\/\/codingindialab.com\/blog\/author\/admin\/"}]}},"jetpack_featured_media_url":"https:\/\/i0.wp.com\/codingindialab.com\/blog\/wp-content\/uploads\/2025\/01\/How-to-make-sticky-section-in-Elementor-for-free.webp?fit=1920%2C900&ssl=1","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/codingindialab.com\/blog\/wp-json\/wp\/v2\/posts\/460","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codingindialab.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codingindialab.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codingindialab.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codingindialab.com\/blog\/wp-json\/wp\/v2\/comments?post=460"}],"version-history":[{"count":5,"href":"https:\/\/codingindialab.com\/blog\/wp-json\/wp\/v2\/posts\/460\/revisions"}],"predecessor-version":[{"id":466,"href":"https:\/\/codingindialab.com\/blog\/wp-json\/wp\/v2\/posts\/460\/revisions\/466"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codingindialab.com\/blog\/wp-json\/wp\/v2\/media\/461"}],"wp:attachment":[{"href":"https:\/\/codingindialab.com\/blog\/wp-json\/wp\/v2\/media?parent=460"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codingindialab.com\/blog\/wp-json\/wp\/v2\/categories?post=460"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codingindialab.com\/blog\/wp-json\/wp\/v2\/tags?post=460"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}