{"id":49201,"date":"2016-05-16T11:10:14","date_gmt":"2016-05-16T11:10:14","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=49201"},"modified":"2026-01-27T14:42:40","modified_gmt":"2026-01-27T14:42:40","slug":"how-to-call-a-phtml-file-in-a-magento2-cms-page","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-call-a-phtml-file-in-a-magento2-cms-page\/","title":{"rendered":"How to Call a PHTML File in a Magento2 CMS Page"},"content":{"rendered":"\n<p>Learn two effective ways to call a <code>phtml<\/code> file in a Magento2 <a href=\"https:\/\/webkul.com\/blog\/create-cms-page-installer-magento-2\/\">CMS page<\/a>. You can either insert it directly in the page content or use a layout file for wider control.<\/p>\n\n\n<div class=\"wk-index-wrap\">\n<h3 class=\"index-title\">Method 1 \u2014 Add PHTML via CMS Page Content<\/h3>\n<\/div>\n<p>This method inserts a PHTML file directly into a specific CMS page.<\/p>\n<h4>Steps:<\/h4>\n<ol>\n<li>Sign in to the <strong data-start=\"697\" data-end=\"714\">Magento Admin<\/strong> dashboard.<\/li>\n<li>Go to <strong data-start=\"775\" data-end=\"794\">Content \u2192 Pages<\/strong> and open the CMS page where you want your PHTML file to appear.<\/li>\n<li>In the <strong data-start=\"909\" data-end=\"927\">Content editor<\/strong>, add this block code where you want the template to load<br \/><img decoding=\"async\" class=\"alignnone size-full-size\" src=\"http:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/05\/cms-1200x603.png\" alt=\"cms-block\" width=\"1200\" height=\"603\" loading=\"lazy\" \/><br \/>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">{{block class=\"Magento\\Framework\\View\\Element\\Template\" template=\"Webkul_Test::test.phtml\"}}<\/pre>\n<\/li>\n<li>Save the page and flush the cache.<br data-start=\"1143\" data-end=\"1146\" \/>Magento will display the PHTML output inside your CMS page.<\/li>\n<\/ol>\n<p><img decoding=\"async\" class=\"alignnone size-full-size\" src=\"http:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/05\/home-1200x584.png\" alt=\"cms-content\" width=\"1200\" height=\"584\" loading=\"lazy\" \/><\/p>\n\n<div class=\"wk-index-wrap\">\n<h3 class=\"index-title\">Method 2 \u2014 Use Layout XML to Call PHTML on All CMS Pages<\/h3>\n<\/div>\n<p>Use this method when you want your PHTML file to show up across all CMS pages.<\/p>\n<h4>Steps:<\/h4>\n<ol>\n<li>Create a layout file named: <em><strong>cms_page_view.xml <\/strong><\/em>inside your module\u2019s layout folder:<br \/>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">app\/code\/Webkul\/Test\/view\/frontend\/layout\/cms_page_view.xml<\/pre>\n<\/li>\n<li>Add this XML code:<br \/>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">&lt;?xml version=\"1.0\"?&gt;\n&lt;page xmlns:xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema-instance\"\n      xsi:noNamespaceSchemaLocation=\"urn:magento:framework:View\/Layout\/etc\/page_configuration.xsd\"&gt;\n    &lt;body&gt;\n        &lt;referenceContainer name=\"content\"&gt;\n            &lt;block class=\"Magento\\Framework\\View\\Element\\Template\"\n                   name=\"custom.phtml.block\"\n                   template=\"Webkul_Test::test.phtml\"\/&gt;\n        &lt;\/referenceContainer&gt;\n    &lt;\/body&gt;\n&lt;\/page&gt;<\/pre>\n<\/li>\n<li>Save the file and clear cache.<br data-start=\"2133\" data-end=\"2136\" \/>Now Magento automatically loads your PHTML template on all CMS pages.<\/li>\n<\/ol>\n\n<div class=\"wk-index-wrap\">\n<h3 class=\"index-title\">Conclusion<\/h3>\n<\/div>\n<p>Magento 2 provides flexible and reliable ways to include PHTML files in CMS pages, either by adding the template directly inside a specific page or by loading it globally through a layout XML file.<\/p>\n<p>You can choose the method based on whether you need the template on a single page or across multiple CMS pages.<\/p>\n<p>By following the correct file structure and using proper template references, you can ensure your custom content displays correctly.<\/p>\n<p>Clearing the cache after implementation helps everything integrate smoothly with your Magento store.<\/p>\n\n\n<p>Know more about\u00a0<a href=\"https:\/\/experienceleague.adobe.com\/en\/docs\/commerce-admin\/content-design\/elements\/pages\/pages-workspace\" target=\"_blank\" rel=\"noreferrer noopener\">Magento 2 CMS Page<\/a>.<\/p>\n\n\n\n<p>Looking to improve your store\u2019s speed and overall performance? Check out our&nbsp;<a href=\"https:\/\/webkul.com\/magento-speed-optimization-services\/\" target=\"_blank\" rel=\"noreferrer noopener\">Magento 2 Speed &amp; Optimization services<\/a>.<\/p>\n\n\n\n<p>For expert guidance or custom feature development, you may&nbsp;<strong><a href=\"https:\/\/webkul.com\/hire-magento-developers\/\" target=\"_blank\" rel=\"noreferrer noopener\">hire our Magento 2 developers<\/a><\/strong>&nbsp;to support your project.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Learn two effective ways to call a phtml file in a Magento2 CMS page. You can either insert it directly in the page content or use a layout file for wider control. Method 1 \u2014 Add PHTML via CMS Page Content This method inserts a PHTML file directly into a specific CMS page. Steps: Sign <a href=\"https:\/\/webkul.com\/blog\/how-to-call-a-phtml-file-in-a-magento2-cms-page\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":21,"featured_media":61035,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[302],"tags":[],"class_list":["post-49201","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-magento2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Call a PHTML File in a Magento2 CMS Page - Webkul Blog<\/title>\n<meta name=\"description\" content=\"Learn how to call a PHTML file on a Magento 2 CMS page using block code. Simple step-by-step guide to display custom templates easily.\" \/>\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-call-a-phtml-file-in-a-magento2-cms-page\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Call a PHTML File in a Magento2 CMS Page - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Learn how to call a PHTML file on a Magento 2 CMS page using block code. Simple step-by-step guide to display custom templates easily.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-call-a-phtml-file-in-a-magento2-cms-page\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rahul0989\" \/>\n<meta property=\"article:published_time\" content=\"2016-05-16T11:10:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-27T14:42:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/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=\"Rahul Mahto\" \/>\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=\"Rahul Mahto\" \/>\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\/how-to-call-a-phtml-file-in-a-magento2-cms-page\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-call-a-phtml-file-in-a-magento2-cms-page\/\"},\"author\":{\"name\":\"Rahul Mahto\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/3002e6bca8362f6cf1c61b2663496c4f\"},\"headline\":\"How to Call a PHTML File in a Magento2 CMS Page\",\"datePublished\":\"2016-05-16T11:10:14+00:00\",\"dateModified\":\"2026-01-27T14:42:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-call-a-phtml-file-in-a-magento2-cms-page\/\"},\"wordCount\":313,\"commentCount\":3,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-call-a-phtml-file-in-a-magento2-cms-page\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Magneto-Code-Snippet.png\",\"articleSection\":[\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-call-a-phtml-file-in-a-magento2-cms-page\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-call-a-phtml-file-in-a-magento2-cms-page\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-call-a-phtml-file-in-a-magento2-cms-page\/\",\"name\":\"How to Call a PHTML File in a Magento2 CMS Page - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-call-a-phtml-file-in-a-magento2-cms-page\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-call-a-phtml-file-in-a-magento2-cms-page\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Magneto-Code-Snippet.png\",\"datePublished\":\"2016-05-16T11:10:14+00:00\",\"dateModified\":\"2026-01-27T14:42:40+00:00\",\"description\":\"Learn how to call a PHTML file on a Magento 2 CMS page using block code. Simple step-by-step guide to display custom templates easily.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-call-a-phtml-file-in-a-magento2-cms-page\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-call-a-phtml-file-in-a-magento2-cms-page\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-call-a-phtml-file-in-a-magento2-cms-page\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Magneto-Code-Snippet.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Magneto-Code-Snippet.png\",\"width\":825,\"height\":260,\"caption\":\"New Product Type\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-call-a-phtml-file-in-a-magento2-cms-page\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Call a PHTML File in a Magento2 CMS Page\"}]},{\"@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\/3002e6bca8362f6cf1c61b2663496c4f\",\"name\":\"Rahul Mahto\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b0def172ef24ea3f7319500afbb65af8012023ba5c143982a4c958b2fb58ee0d?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\/b0def172ef24ea3f7319500afbb65af8012023ba5c143982a4c958b2fb58ee0d?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Rahul Mahto\"},\"sameAs\":[\"http:\/\/webkul.com\",\"https:\/\/www.facebook.com\/rahul0989\"],\"url\":\"https:\/\/webkul.com\/blog\/author\/rahul\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Call a PHTML File in a Magento2 CMS Page - Webkul Blog","description":"Learn how to call a PHTML file on a Magento 2 CMS page using block code. Simple step-by-step guide to display custom templates easily.","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-call-a-phtml-file-in-a-magento2-cms-page\/","og_locale":"en_US","og_type":"article","og_title":"How to Call a PHTML File in a Magento2 CMS Page - Webkul Blog","og_description":"Learn how to call a PHTML file on a Magento 2 CMS page using block code. Simple step-by-step guide to display custom templates easily.","og_url":"https:\/\/webkul.com\/blog\/how-to-call-a-phtml-file-in-a-magento2-cms-page\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_author":"https:\/\/www.facebook.com\/rahul0989","article_published_time":"2016-05-16T11:10:14+00:00","article_modified_time":"2026-01-27T14:42:40+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Magneto-Code-Snippet.png","type":"image\/png"}],"author":"Rahul Mahto","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Rahul Mahto","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-to-call-a-phtml-file-in-a-magento2-cms-page\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-call-a-phtml-file-in-a-magento2-cms-page\/"},"author":{"name":"Rahul Mahto","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/3002e6bca8362f6cf1c61b2663496c4f"},"headline":"How to Call a PHTML File in a Magento2 CMS Page","datePublished":"2016-05-16T11:10:14+00:00","dateModified":"2026-01-27T14:42:40+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-call-a-phtml-file-in-a-magento2-cms-page\/"},"wordCount":313,"commentCount":3,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-call-a-phtml-file-in-a-magento2-cms-page\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Magneto-Code-Snippet.png","articleSection":["Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-call-a-phtml-file-in-a-magento2-cms-page\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-call-a-phtml-file-in-a-magento2-cms-page\/","url":"https:\/\/webkul.com\/blog\/how-to-call-a-phtml-file-in-a-magento2-cms-page\/","name":"How to Call a PHTML File in a Magento2 CMS Page - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-call-a-phtml-file-in-a-magento2-cms-page\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-call-a-phtml-file-in-a-magento2-cms-page\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Magneto-Code-Snippet.png","datePublished":"2016-05-16T11:10:14+00:00","dateModified":"2026-01-27T14:42:40+00:00","description":"Learn how to call a PHTML file on a Magento 2 CMS page using block code. Simple step-by-step guide to display custom templates easily.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-call-a-phtml-file-in-a-magento2-cms-page\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-call-a-phtml-file-in-a-magento2-cms-page\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/how-to-call-a-phtml-file-in-a-magento2-cms-page\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Magneto-Code-Snippet.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Magneto-Code-Snippet.png","width":825,"height":260,"caption":"New Product Type"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-call-a-phtml-file-in-a-magento2-cms-page\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Call a PHTML File in a Magento2 CMS Page"}]},{"@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\/3002e6bca8362f6cf1c61b2663496c4f","name":"Rahul Mahto","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b0def172ef24ea3f7319500afbb65af8012023ba5c143982a4c958b2fb58ee0d?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\/b0def172ef24ea3f7319500afbb65af8012023ba5c143982a4c958b2fb58ee0d?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Rahul Mahto"},"sameAs":["http:\/\/webkul.com","https:\/\/www.facebook.com\/rahul0989"],"url":"https:\/\/webkul.com\/blog\/author\/rahul\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/49201","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\/21"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=49201"}],"version-history":[{"count":17,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/49201\/revisions"}],"predecessor-version":[{"id":523798,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/49201\/revisions\/523798"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/61035"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=49201"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=49201"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=49201"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}