{"id":138012,"date":"2018-08-11T06:52:41","date_gmt":"2018-08-11T06:52:41","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=138012"},"modified":"2024-02-27T13:35:59","modified_gmt":"2024-02-27T13:35:59","slug":"how-to-show-a-block-content-on-homepage-with-layout-file-in-magento-2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-show-a-block-content-on-homepage-with-layout-file-in-magento-2\/","title":{"rendered":"How to show a block content on homepage with layout file in Magento 2"},"content":{"rendered":"\n<p>Today we will learn how can we call a block or show a template file on homepage with a layout file.<\/p>\n\n\n\n<p>The main question here is what is the layout file for homepage and the answer is&nbsp;<strong>cms_index_index.xml<\/strong>.<\/p>\n\n\n\n<p>So first create a\u00a0<strong>cms_index_index.xml<\/strong> file under\u00a0<strong>Webkul\/HelloWorld\/view\/frontend\/layout\/<\/strong> folder<\/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;body&gt;\n        &lt;referenceContainer name=&quot;content&quot;&gt;\n             &lt;block class=&quot;Webkul\\HelloWorld\\Block\\HomePage&quot; name=&quot;wk_helloworld_homepage_block&quot; template=&quot;Webkul_HelloWorld::homepage.phtml&quot;\/&gt;\n        &lt;\/referenceContainer&gt;\n    &lt;\/body&gt;\n&lt;\/page&gt;<\/pre>\n\n\n\n<p>Then create a <strong>HomePage.php<\/strong> under\u00a0<strong>Webkul\/HelloWorld\/Block\/<\/strong> folder<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\nnamespace Webkul\\HelloWorld\\Block;\n\nclass HomePage extends \\Magento\\Framework\\View\\Element\\Template\n{\n    public function getMessage()\n    {\n        $msg = &quot;Hello World&quot;;\n        return $msg;\n    }\n}<\/pre>\n\n\n\n<p>After that create a <strong>homepage.phtml<\/strong> file under\u00a0<strong>Webkul\/HelloWorld\/view\/frontend\/templates\/<\/strong> folder<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;h1&gt;&lt;?php echo $block-&gt;getMessage();?&gt;&lt;\/h1&gt;\n&lt;p&gt;Some content here&lt;\/p&gt;<\/pre>\n\n\n\n<p><strong>Home Page view<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"1296\" height=\"654\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/Screenshot_489.png\" alt=\"cms page image\" class=\"wp-image-138020\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/Screenshot_489.png 1296w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/Screenshot_489-250x126.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/Screenshot_489-300x151.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/Screenshot_489-768x388.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/Screenshot_489-1200x606.png 1200w\" sizes=\"(max-width: 1296px) 100vw, 1296px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>There is one more way to show a block on homepage, you can check it here&nbsp;<a href=\"https:\/\/webkul.com\/blog\/call-phtml-file-cms-page-magento2\/\">Call Phtml file on CMS Page \u2013 Magento2<\/a>.<\/p>\n\n\n\n<p>Happy coding \ud83d\ude42 Feel free to comment if you have any issue.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Today we will learn how can we call a block or show a template file on homepage with a layout file. The main question here is what is the layout file for homepage and the answer is&nbsp;cms_index_index.xml. So first create a\u00a0cms_index_index.xml file under\u00a0Webkul\/HelloWorld\/view\/frontend\/layout\/ folder Then create a HomePage.php under\u00a0Webkul\/HelloWorld\/Block\/ folder After that create a homepage.phtml <a href=\"https:\/\/webkul.com\/blog\/how-to-show-a-block-content-on-homepage-with-layout-file-in-magento-2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":201,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[302],"tags":[7264,7266,7267,7265],"class_list":["post-138012","post","type-post","status-publish","format-standard","hentry","category-magento2","tag-block-content-on-homepage","tag-layout-for-homepage","tag-programatically-edit-homepage","tag-template-on-homepage"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to show a block content on homepage with layout file in Magento 2 - 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\/how-to-show-a-block-content-on-homepage-with-layout-file-in-magento-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to show a block content on homepage with layout file in Magento 2 - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Today we will learn how can we call a block or show a template file on homepage with a layout file. The main question here is what is the layout file for homepage and the answer is&nbsp;cms_index_index.xml. So first create a\u00a0cms_index_index.xml file under\u00a0Webkul\/HelloWorld\/view\/frontend\/layout\/ folder Then create a HomePage.php under\u00a0Webkul\/HelloWorld\/Block\/ folder After that create a homepage.phtml [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-show-a-block-content-on-homepage-with-layout-file-in-magento-2\/\" \/>\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=\"2018-08-11T06:52:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-27T13:35:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/08\/Screenshot_489.png\" \/>\n<meta name=\"author\" content=\"Sanjay Chouhan\" \/>\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=\"Sanjay Chouhan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-show-a-block-content-on-homepage-with-layout-file-in-magento-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-show-a-block-content-on-homepage-with-layout-file-in-magento-2\/\"},\"author\":{\"name\":\"Sanjay Chouhan\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/645580979f637b0e355deea21bd07462\"},\"headline\":\"How to show a block content on homepage with layout file in Magento 2\",\"datePublished\":\"2018-08-11T06:52:41+00:00\",\"dateModified\":\"2024-02-27T13:35:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-show-a-block-content-on-homepage-with-layout-file-in-magento-2\/\"},\"wordCount\":133,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-show-a-block-content-on-homepage-with-layout-file-in-magento-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/08\/Screenshot_489.png\",\"keywords\":[\"block content on homepage\",\"layout for homepage\",\"programatically edit homepage\",\"template on homepage\"],\"articleSection\":[\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-show-a-block-content-on-homepage-with-layout-file-in-magento-2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-show-a-block-content-on-homepage-with-layout-file-in-magento-2\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-show-a-block-content-on-homepage-with-layout-file-in-magento-2\/\",\"name\":\"How to show a block content on homepage with layout file in Magento 2 - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-show-a-block-content-on-homepage-with-layout-file-in-magento-2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-show-a-block-content-on-homepage-with-layout-file-in-magento-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/08\/Screenshot_489.png\",\"datePublished\":\"2018-08-11T06:52:41+00:00\",\"dateModified\":\"2024-02-27T13:35:59+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-show-a-block-content-on-homepage-with-layout-file-in-magento-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-show-a-block-content-on-homepage-with-layout-file-in-magento-2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-show-a-block-content-on-homepage-with-layout-file-in-magento-2\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/Screenshot_489.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/Screenshot_489.png\",\"width\":\"1296\",\"height\":\"654\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-show-a-block-content-on-homepage-with-layout-file-in-magento-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to show a block content on homepage with layout file in Magento 2\"}]},{\"@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\/645580979f637b0e355deea21bd07462\",\"name\":\"Sanjay Chouhan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/cd6ee19f99bd1fcafef819135529c952d7c875d06fedd9fd4c4eb0996bafc1bd?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\/cd6ee19f99bd1fcafef819135529c952d7c875d06fedd9fd4c4eb0996bafc1bd?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Sanjay Chouhan\"},\"sameAs\":[\"https:\/\/www.instagram.com\/sanjaychouhansc\/\",\"https:\/\/in.linkedin.com\/in\/scchouhansanjay\"],\"url\":\"https:\/\/webkul.com\/blog\/author\/sanjay-chouhan180\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to show a block content on homepage with layout file in Magento 2 - 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\/how-to-show-a-block-content-on-homepage-with-layout-file-in-magento-2\/","og_locale":"en_US","og_type":"article","og_title":"How to show a block content on homepage with layout file in Magento 2 - Webkul Blog","og_description":"Today we will learn how can we call a block or show a template file on homepage with a layout file. The main question here is what is the layout file for homepage and the answer is&nbsp;cms_index_index.xml. So first create a\u00a0cms_index_index.xml file under\u00a0Webkul\/HelloWorld\/view\/frontend\/layout\/ folder Then create a HomePage.php under\u00a0Webkul\/HelloWorld\/Block\/ folder After that create a homepage.phtml [...]","og_url":"https:\/\/webkul.com\/blog\/how-to-show-a-block-content-on-homepage-with-layout-file-in-magento-2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2018-08-11T06:52:41+00:00","article_modified_time":"2024-02-27T13:35:59+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/08\/Screenshot_489.png","type":"","width":"","height":""}],"author":"Sanjay Chouhan","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Sanjay Chouhan","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-to-show-a-block-content-on-homepage-with-layout-file-in-magento-2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-show-a-block-content-on-homepage-with-layout-file-in-magento-2\/"},"author":{"name":"Sanjay Chouhan","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/645580979f637b0e355deea21bd07462"},"headline":"How to show a block content on homepage with layout file in Magento 2","datePublished":"2018-08-11T06:52:41+00:00","dateModified":"2024-02-27T13:35:59+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-show-a-block-content-on-homepage-with-layout-file-in-magento-2\/"},"wordCount":133,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-show-a-block-content-on-homepage-with-layout-file-in-magento-2\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/08\/Screenshot_489.png","keywords":["block content on homepage","layout for homepage","programatically edit homepage","template on homepage"],"articleSection":["Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-show-a-block-content-on-homepage-with-layout-file-in-magento-2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-show-a-block-content-on-homepage-with-layout-file-in-magento-2\/","url":"https:\/\/webkul.com\/blog\/how-to-show-a-block-content-on-homepage-with-layout-file-in-magento-2\/","name":"How to show a block content on homepage with layout file in Magento 2 - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-show-a-block-content-on-homepage-with-layout-file-in-magento-2\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-show-a-block-content-on-homepage-with-layout-file-in-magento-2\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/08\/Screenshot_489.png","datePublished":"2018-08-11T06:52:41+00:00","dateModified":"2024-02-27T13:35:59+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-show-a-block-content-on-homepage-with-layout-file-in-magento-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-show-a-block-content-on-homepage-with-layout-file-in-magento-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/how-to-show-a-block-content-on-homepage-with-layout-file-in-magento-2\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/Screenshot_489.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/08\/Screenshot_489.png","width":"1296","height":"654"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-show-a-block-content-on-homepage-with-layout-file-in-magento-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to show a block content on homepage with layout file in Magento 2"}]},{"@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\/645580979f637b0e355deea21bd07462","name":"Sanjay Chouhan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/cd6ee19f99bd1fcafef819135529c952d7c875d06fedd9fd4c4eb0996bafc1bd?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\/cd6ee19f99bd1fcafef819135529c952d7c875d06fedd9fd4c4eb0996bafc1bd?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Sanjay Chouhan"},"sameAs":["https:\/\/www.instagram.com\/sanjaychouhansc\/","https:\/\/in.linkedin.com\/in\/scchouhansanjay"],"url":"https:\/\/webkul.com\/blog\/author\/sanjay-chouhan180\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/138012","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\/201"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=138012"}],"version-history":[{"count":5,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/138012\/revisions"}],"predecessor-version":[{"id":424768,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/138012\/revisions\/424768"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=138012"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=138012"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=138012"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}