{"id":69461,"date":"2017-02-23T08:53:54","date_gmt":"2017-02-23T08:53:54","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=69461"},"modified":"2017-02-23T08:53:54","modified_gmt":"2017-02-23T08:53:54","slug":"create-and-submit-form-using-renderoptions-in-admin-controller-of-prestashop","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/create-and-submit-form-using-renderoptions-in-admin-controller-of-prestashop\/","title":{"rendered":"How to create and submit a form using renderOptions of Prestashop Admin controller"},"content":{"rendered":"<p>In this blog, we will learn that how to create and submit a form using\u00a0renderOptions() in any admin controller of Prestashop and also we will see that how we can display form in place of renderList.<\/p>\n<p>So suppose we want to create a form with some fields ie. input fields, radio button etc. \u00a0and we need\u00a0to save these data in Prestashop `configuration` table.<\/p>\n<p>Also this form will be display at the position of renderList of your Admin controller.<\/p>\n<p>So here is the code through we can create a form in any admin controller using\u00a0renderOptions() in place of renderList.<\/p>\n<pre class=\"brush:php\">\/**\r\n* 2010-2017 Webkul.\r\n*\r\n* NOTICE OF LICENSE\r\n*\r\n* All right is reserved,\r\n* Please go through this link for complete license : https:\/\/store.webkul.com\/license.html\r\n*\r\n* DISCLAIMER\r\n*\r\n* Do not edit or add to this file if you wish to upgrade this module to newer\r\n* versions in the future. If you wish to customize this module for your\r\n* needs please refer to https:\/\/store.webkul.com\/customisation-guidelines\/ for more information.\r\n*\r\n*  @author    Webkul IN &lt;support@webkul.com&gt;\r\n*  @copyright 2010-2017 Webkul IN\r\n*  @license   https:\/\/store.webkul.com\/license.html\r\n*\/\r\n\r\npublic function __construct()\r\n    {\r\n        $this-&gt;context = Context::getContext();\r\n        $this-&gt;bootstrap = true;\r\n        $this-&gt;table = 'configuration';\r\n\r\n        parent::__construct();\r\n\r\n        $this-&gt;fields_options = array(\r\n            'Form' =&gt; array(\r\n                'title' =&gt; $this-&gt;l('Form'),\r\n                'icon' =&gt; 'icon-cogs',\r\n                'fields' =&gt; array(\r\n                    'PS_NAME' =&gt; array(\r\n                        'title' =&gt; $this-&gt;l('Customer Name'),\r\n                        'type' =&gt; 'text',\r\n                    ),\r\n                    'PS_EMAIL' =&gt; array(\r\n                        'title' =&gt; $this-&gt;l('Customer Email'),\r\n                        'type' =&gt; 'text',\r\n                    ),\r\n                    'PS_DISPLAY_DETAILS' =&gt; array(\r\n                       'title' =&gt; $this-&gt;l('Display Customer Details'),\r\n                       'type' =&gt; 'bool',\r\n                       'validation' =&gt; 'isBool',\r\n                       'default' =&gt; '1'\r\n                    ),\r\n                ),\r\n                'submit' =&gt; array('title' =&gt; $this-&gt;l('Save'))\r\n            ),\r\n        );\r\n    }<\/pre>\n<p>Normally we use\u00a0$this-&gt;fields_list for showing renderList in Admin controller\u00a0__construct() function but here we will use\u00a0$this-&gt;fields_options. So that we can display our form instead of renderList.<\/p>\n<p>After this we can see form in our admin controller &#8211;<\/p>\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-75650\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/02\/pscustomerform-1.png\" alt=\"\" width=\"1284\" height=\"473\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/02\/pscustomerform-1.png 1284w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/02\/pscustomerform-1-250x92.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/02\/pscustomerform-1-300x111.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/02\/pscustomerform-1-768x283.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/02\/pscustomerform-1-1200x442.png 1200w\" sizes=\"(max-width: 1284px) 100vw, 1284px\" loading=\"lazy\" \/><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this blog, we will learn that how to create and submit a form using\u00a0renderOptions() in any admin controller of Prestashop and also we will see that how we can display form in place of renderList. So suppose we want to create a form with some fields ie. input fields, radio button etc. \u00a0and we <a href=\"https:\/\/webkul.com\/blog\/create-and-submit-form-using-renderoptions-in-admin-controller-of-prestashop\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":82,"featured_media":69431,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[209],"tags":[],"class_list":["post-69461","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-prestashop"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to create and submit a form using renderOptions of Prestashop Admin controller<\/title>\n<meta name=\"description\" content=\"Create and submit a form using renderOptions() in any admin controller of Prestashop and display form in place of renderList.\" \/>\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\/create-and-submit-form-using-renderoptions-in-admin-controller-of-prestashop\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to create and submit a form using renderOptions of Prestashop Admin controller\" \/>\n<meta property=\"og:description\" content=\"Create and submit a form using renderOptions() in any admin controller of Prestashop and display form in place of renderList.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/create-and-submit-form-using-renderoptions-in-admin-controller-of-prestashop\/\" \/>\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-23T08:53:54+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/12\/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=\"Neeraj\" \/>\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=\"Neeraj\" \/>\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\/create-and-submit-form-using-renderoptions-in-admin-controller-of-prestashop\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-and-submit-form-using-renderoptions-in-admin-controller-of-prestashop\/\"},\"author\":{\"name\":\"Neeraj\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/741818aa2ccafbb9688f6108bfd94273\"},\"headline\":\"How to create and submit a form using renderOptions of Prestashop Admin controller\",\"datePublished\":\"2017-02-23T08:53:54+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-and-submit-form-using-renderoptions-in-admin-controller-of-prestashop\/\"},\"wordCount\":158,\"commentCount\":6,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-and-submit-form-using-renderoptions-in-admin-controller-of-prestashop\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/12\/Prestashop-Code-Snippet-1.png\",\"articleSection\":[\"prestashop\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/create-and-submit-form-using-renderoptions-in-admin-controller-of-prestashop\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/create-and-submit-form-using-renderoptions-in-admin-controller-of-prestashop\/\",\"url\":\"https:\/\/webkul.com\/blog\/create-and-submit-form-using-renderoptions-in-admin-controller-of-prestashop\/\",\"name\":\"How to create and submit a form using renderOptions of Prestashop Admin controller\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-and-submit-form-using-renderoptions-in-admin-controller-of-prestashop\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-and-submit-form-using-renderoptions-in-admin-controller-of-prestashop\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/12\/Prestashop-Code-Snippet-1.png\",\"datePublished\":\"2017-02-23T08:53:54+00:00\",\"description\":\"Create and submit a form using renderOptions() in any admin controller of Prestashop and display form in place of renderList.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-and-submit-form-using-renderoptions-in-admin-controller-of-prestashop\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/create-and-submit-form-using-renderoptions-in-admin-controller-of-prestashop\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/create-and-submit-form-using-renderoptions-in-admin-controller-of-prestashop\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/12\/Prestashop-Code-Snippet-1.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/12\/Prestashop-Code-Snippet-1.png\",\"width\":825,\"height\":260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/create-and-submit-form-using-renderoptions-in-admin-controller-of-prestashop\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to create and submit a form using renderOptions of Prestashop Admin controller\"}]},{\"@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\/741818aa2ccafbb9688f6108bfd94273\",\"name\":\"Neeraj\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f45246e2a6b765786af5b102a8adbc375466c87b477afa9d5c7bf6777d4f2566?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\/f45246e2a6b765786af5b102a8adbc375466c87b477afa9d5c7bf6777d4f2566?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Neeraj\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/neeraj751\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to create and submit a form using renderOptions of Prestashop Admin controller","description":"Create and submit a form using renderOptions() in any admin controller of Prestashop and display form in place of renderList.","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\/create-and-submit-form-using-renderoptions-in-admin-controller-of-prestashop\/","og_locale":"en_US","og_type":"article","og_title":"How to create and submit a form using renderOptions of Prestashop Admin controller","og_description":"Create and submit a form using renderOptions() in any admin controller of Prestashop and display form in place of renderList.","og_url":"https:\/\/webkul.com\/blog\/create-and-submit-form-using-renderoptions-in-admin-controller-of-prestashop\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2017-02-23T08:53:54+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/12\/Prestashop-Code-Snippet-1.png","type":"image\/png"}],"author":"Neeraj","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Neeraj","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/create-and-submit-form-using-renderoptions-in-admin-controller-of-prestashop\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/create-and-submit-form-using-renderoptions-in-admin-controller-of-prestashop\/"},"author":{"name":"Neeraj","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/741818aa2ccafbb9688f6108bfd94273"},"headline":"How to create and submit a form using renderOptions of Prestashop Admin controller","datePublished":"2017-02-23T08:53:54+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/create-and-submit-form-using-renderoptions-in-admin-controller-of-prestashop\/"},"wordCount":158,"commentCount":6,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/create-and-submit-form-using-renderoptions-in-admin-controller-of-prestashop\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/12\/Prestashop-Code-Snippet-1.png","articleSection":["prestashop"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/create-and-submit-form-using-renderoptions-in-admin-controller-of-prestashop\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/create-and-submit-form-using-renderoptions-in-admin-controller-of-prestashop\/","url":"https:\/\/webkul.com\/blog\/create-and-submit-form-using-renderoptions-in-admin-controller-of-prestashop\/","name":"How to create and submit a form using renderOptions of Prestashop Admin controller","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/create-and-submit-form-using-renderoptions-in-admin-controller-of-prestashop\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/create-and-submit-form-using-renderoptions-in-admin-controller-of-prestashop\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/12\/Prestashop-Code-Snippet-1.png","datePublished":"2017-02-23T08:53:54+00:00","description":"Create and submit a form using renderOptions() in any admin controller of Prestashop and display form in place of renderList.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/create-and-submit-form-using-renderoptions-in-admin-controller-of-prestashop\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/create-and-submit-form-using-renderoptions-in-admin-controller-of-prestashop\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/create-and-submit-form-using-renderoptions-in-admin-controller-of-prestashop\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/12\/Prestashop-Code-Snippet-1.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/12\/Prestashop-Code-Snippet-1.png","width":825,"height":260},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/create-and-submit-form-using-renderoptions-in-admin-controller-of-prestashop\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to create and submit a form using renderOptions of Prestashop Admin controller"}]},{"@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\/741818aa2ccafbb9688f6108bfd94273","name":"Neeraj","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/f45246e2a6b765786af5b102a8adbc375466c87b477afa9d5c7bf6777d4f2566?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\/f45246e2a6b765786af5b102a8adbc375466c87b477afa9d5c7bf6777d4f2566?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Neeraj"},"url":"https:\/\/webkul.com\/blog\/author\/neeraj751\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/69461","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\/82"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=69461"}],"version-history":[{"count":9,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/69461\/revisions"}],"predecessor-version":[{"id":75653,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/69461\/revisions\/75653"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/69431"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=69461"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=69461"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=69461"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}