{"id":73908,"date":"2017-02-07T14:30:17","date_gmt":"2017-02-07T14:30:17","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=73908"},"modified":"2017-02-07T14:34:26","modified_gmt":"2017-02-07T14:34:26","slug":"fetch-tpl-file-ajax-response-admin-controller","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/fetch-tpl-file-ajax-response-admin-controller\/","title":{"rendered":"Fetch tpl file in ajax response on admin controller in prestashop"},"content":{"rendered":"<p>Fetch tpl file in ajax response on admin controller in prestashop. When we need to code\u00a0same thing on multiple page or multiple controller in prestashop then we usually think to save our time and code effort. Even we think to make a global file, which can be used on multiple controllers.<\/p>\n<h2>How to fetch tpl\u00a0file in ajax response<\/h2>\n<p>Here, we will tell you, &#8220;how to fetch tpl\u00a0file in ajax response&#8221; while working\u00a0on\u00a0admin controller in prestashop.<\/p>\n<p><strong>Step :1<\/strong> First create a .tpl file in your hook directory (views\/templates\/hook). Directory can be changed accordingly, we are taking example.<\/p>\n<p>Here, we have putted a file in &#8211; views\/templates\/hook\/abc.tpl. Now i want\u00a0to use abc.tpl on both controller (Front\/Admin).<\/p>\n<p><strong>Step :2 Html Code &#8211;<\/strong><\/p>\n<pre class=\"brush:js\">&lt;button id=\"yourID\" class=\"btn btn-primary\" type=\"button\"&gt;Add More&lt;\/button&gt;<\/pre>\n<p>Ajax Code\u00a0&#8211;<\/p>\n<pre class=\"brush:js\">$(document).on('click', '#yourID', function() {\r\n    $.ajax({\r\n        url : path,\r\n        cache : false,\r\n        type : 'POST',\r\n        data : {\r\n            ajax: true,\r\n            action: \"fetchTPL\",\r\n        },\r\n        success : function(result) {\r\n            if (result) {\r\n                $('#addContent').last().append(result);\r\n            }\r\n        }\r\n    });\r\n});<\/pre>\n<p>As we know, whenever\u00a0we pass ajax \u00a0and action parameter while sending request using ajax on controller to manipulate the data, it process on same controller with a prefix added function eg &#8211; ajaxProcessFetchTPL().<\/p>\n<p><strong>Step :3 Admin Controller Code &#8211;\u00a0<\/strong><\/p>\n<pre class=\"brush:php\">public function ajaxProcessFetchTPL()\r\n{\r\n    $data = array(); \/\/ array is empty, you can work accordingly here\r\n    \r\n    \/\/after processing all data just assign it to smarty of content\r\n    $this-&gt;context-&gt;smarty-&gt;assign(array(\r\n        'youContentData' =&gt; $data)\r\n    );\r\n\r\n    \/\/ to fetch a tpl file use fetch method and use die function to return the response to ajax\r\n    die($this-&gt;context-&gt;smarty-&gt;fetch(_PS_MODULE_DIR_.'modulename\/views\/templates\/hook\/abc.tpl'));\r\n}<\/pre>\n<p>&nbsp;<\/p>\n<p>Checkout above code, when ajax request \u00a0will call the function ajaxProcessFetchTPL(), You can processe all the manipulation with variables and data according to your requirement, after that we have assigned all\u00a0data in a smarty context which we will use on tpl file.<\/p>\n<p>Now\u00a0you can simply call fetch function of smarty to retrieve the .tpl file from the directory. die() function will return the response to ajax data\/result, where have append whole tpl file into a html element.<\/p>\n<p>If there are something not understandable by this post then do comment below. We will surely assist on that.<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Fetch tpl file in ajax response on admin controller in prestashop. When we need to code\u00a0same thing on multiple page or multiple controller in prestashop then we usually think to save our time and code effort. Even we think to make a global file, which can be used on multiple controllers. How to fetch tpl\u00a0file <a href=\"https:\/\/webkul.com\/blog\/fetch-tpl-file-ajax-response-admin-controller\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":81,"featured_media":63569,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13,209],"tags":[250,3565,2065,4449,4448,4447],"class_list":["post-73908","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-php","category-prestashop","tag-ajax","tag-file","tag-prestashop","tag-response","tag-smarty","tag-tpl"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Fetch tpl file in ajax response on admin controller in prestashop<\/title>\n<meta name=\"description\" content=\"Fetch tpl file in ajax response on admin controller in prestashop. When we need to code same thing on multiple page or multiple controller in prestashop the\" \/>\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\/fetch-tpl-file-ajax-response-admin-controller\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Fetch tpl file in ajax response on admin controller in prestashop\" \/>\n<meta property=\"og:description\" content=\"Fetch tpl file in ajax response on admin controller in prestashop. When we need to code same thing on multiple page or multiple controller in prestashop the\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/fetch-tpl-file-ajax-response-admin-controller\/\" \/>\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-02-07T14:30:17+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-02-07T14:34:26+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/Prestashop-Code-Snippet-1.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=\"Deepak\" \/>\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=\"Deepak\" \/>\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\/fetch-tpl-file-ajax-response-admin-controller\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/fetch-tpl-file-ajax-response-admin-controller\/\"},\"author\":{\"name\":\"Deepak\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/06a72f75a5d335e9751297fb9839ef68\"},\"headline\":\"Fetch tpl file in ajax response on admin controller in prestashop\",\"datePublished\":\"2017-02-07T14:30:17+00:00\",\"dateModified\":\"2017-02-07T14:34:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/fetch-tpl-file-ajax-response-admin-controller\/\"},\"wordCount\":285,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/fetch-tpl-file-ajax-response-admin-controller\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/Prestashop-Code-Snippet-1.png\",\"keywords\":[\"ajax\",\"file\",\"prestashop\",\"response\",\"smarty\",\"tpl\"],\"articleSection\":[\"php\",\"prestashop\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/fetch-tpl-file-ajax-response-admin-controller\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/fetch-tpl-file-ajax-response-admin-controller\/\",\"url\":\"https:\/\/webkul.com\/blog\/fetch-tpl-file-ajax-response-admin-controller\/\",\"name\":\"Fetch tpl file in ajax response on admin controller in prestashop\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/fetch-tpl-file-ajax-response-admin-controller\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/fetch-tpl-file-ajax-response-admin-controller\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/Prestashop-Code-Snippet-1.png\",\"datePublished\":\"2017-02-07T14:30:17+00:00\",\"dateModified\":\"2017-02-07T14:34:26+00:00\",\"description\":\"Fetch tpl file in ajax response on admin controller in prestashop. When we need to code same thing on multiple page or multiple controller in prestashop the\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/fetch-tpl-file-ajax-response-admin-controller\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/fetch-tpl-file-ajax-response-admin-controller\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/fetch-tpl-file-ajax-response-admin-controller\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/Prestashop-Code-Snippet-1.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/Prestashop-Code-Snippet-1.png\",\"width\":825,\"height\":260,\"caption\":\"fetch tpl\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/fetch-tpl-file-ajax-response-admin-controller\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Fetch tpl file in ajax response on admin controller in prestashop\"}]},{\"@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\/06a72f75a5d335e9751297fb9839ef68\",\"name\":\"Deepak\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/067dbf448c072fa8c6cb14b2e26949dc29c46c534e586b915b56f39c95cb2b95?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\/067dbf448c072fa8c6cb14b2e26949dc29c46c534e586b915b56f39c95cb2b95?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Deepak\"},\"description\":\"I love the web. Coding is my passion and love the learn new technologies.\",\"url\":\"https:\/\/webkul.com\/blog\/author\/deepak037\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Fetch tpl file in ajax response on admin controller in prestashop","description":"Fetch tpl file in ajax response on admin controller in prestashop. When we need to code same thing on multiple page or multiple controller in prestashop the","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\/fetch-tpl-file-ajax-response-admin-controller\/","og_locale":"en_US","og_type":"article","og_title":"Fetch tpl file in ajax response on admin controller in prestashop","og_description":"Fetch tpl file in ajax response on admin controller in prestashop. When we need to code same thing on multiple page or multiple controller in prestashop the","og_url":"https:\/\/webkul.com\/blog\/fetch-tpl-file-ajax-response-admin-controller\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2017-02-07T14:30:17+00:00","article_modified_time":"2017-02-07T14:34:26+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/Prestashop-Code-Snippet-1.png","type":"image\/png"}],"author":"Deepak","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Deepak","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/fetch-tpl-file-ajax-response-admin-controller\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/fetch-tpl-file-ajax-response-admin-controller\/"},"author":{"name":"Deepak","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/06a72f75a5d335e9751297fb9839ef68"},"headline":"Fetch tpl file in ajax response on admin controller in prestashop","datePublished":"2017-02-07T14:30:17+00:00","dateModified":"2017-02-07T14:34:26+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/fetch-tpl-file-ajax-response-admin-controller\/"},"wordCount":285,"commentCount":2,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/fetch-tpl-file-ajax-response-admin-controller\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/Prestashop-Code-Snippet-1.png","keywords":["ajax","file","prestashop","response","smarty","tpl"],"articleSection":["php","prestashop"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/fetch-tpl-file-ajax-response-admin-controller\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/fetch-tpl-file-ajax-response-admin-controller\/","url":"https:\/\/webkul.com\/blog\/fetch-tpl-file-ajax-response-admin-controller\/","name":"Fetch tpl file in ajax response on admin controller in prestashop","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/fetch-tpl-file-ajax-response-admin-controller\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/fetch-tpl-file-ajax-response-admin-controller\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/Prestashop-Code-Snippet-1.png","datePublished":"2017-02-07T14:30:17+00:00","dateModified":"2017-02-07T14:34:26+00:00","description":"Fetch tpl file in ajax response on admin controller in prestashop. When we need to code same thing on multiple page or multiple controller in prestashop the","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/fetch-tpl-file-ajax-response-admin-controller\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/fetch-tpl-file-ajax-response-admin-controller\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/fetch-tpl-file-ajax-response-admin-controller\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/Prestashop-Code-Snippet-1.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/Prestashop-Code-Snippet-1.png","width":825,"height":260,"caption":"fetch tpl"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/fetch-tpl-file-ajax-response-admin-controller\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Fetch tpl file in ajax response on admin controller in prestashop"}]},{"@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\/06a72f75a5d335e9751297fb9839ef68","name":"Deepak","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/067dbf448c072fa8c6cb14b2e26949dc29c46c534e586b915b56f39c95cb2b95?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\/067dbf448c072fa8c6cb14b2e26949dc29c46c534e586b915b56f39c95cb2b95?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Deepak"},"description":"I love the web. Coding is my passion and love the learn new technologies.","url":"https:\/\/webkul.com\/blog\/author\/deepak037\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/73908","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\/81"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=73908"}],"version-history":[{"count":9,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/73908\/revisions"}],"predecessor-version":[{"id":73934,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/73908\/revisions\/73934"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/63569"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=73908"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=73908"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=73908"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}