{"id":103860,"date":"2017-12-08T07:43:06","date_gmt":"2017-12-08T07:43:06","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=103860"},"modified":"2017-12-25T08:11:51","modified_gmt":"2017-12-25T08:11:51","slug":"inline-grid-edit-magento-1-backend","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/inline-grid-edit-magento-1-backend\/","title":{"rendered":"Inline Grid Edit- Magento 1 Backend"},"content":{"rendered":"<p>Inline grid edit in admin panel makes life easier and edits faster as there is no need to redirect the page to edit a row in a grid. We can edit on the row itself.<\/p>\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-104066\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/12\/Screenshot_308.png\" alt=\"Inline grid edit\" width=\"147\" height=\"150\" loading=\"lazy\" \/><\/p>\n<p>&nbsp;<\/p>\n<h4>Step 1-<\/h4>\n<p>We use the following code inside\u00a0_prepareColumns() for the column we want to edit in our grid file.<\/p>\n<pre class=\"brush:php\">$this-&gt;addColumn('name', array(\r\n  'renderer' =&gt; 'Company_Module_Block_Adminhtml_Grid_Renderer_Inline',\r\n  'header' =&gt; Mage::helper('module')-&gt;__('Name'),\r\n  'index' =&gt; 'name',\r\n));\r\n<\/pre>\n<h4>Step 2-<\/h4>\n<p>In our renderer file we use the following code<br \/>\n<a href=\"https:\/\/webkul.com\/blog\/how-to-use-grid-renderer-in-magento-2user-renderer-in-magento-2grid-renderer-magento-2\/\">Click here to use grid renderer in magento 2<\/a><\/p>\n<pre class=\"brush:php\">class Company_Module_Block_Adminhtml_Grid_Renderer_Inline extends Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Input\r\n{\r\n    public function render(Varien_Object $row)\r\n    {\r\n        $html = parent::render($row);\r\n        $html .= '&lt;img src=\"'.Mage::getBaseUrl('media').'module\/tick.png\" id=\"addName'. $row-&gt;getId() .'\"&gt;';\r\n        return $html;\r\n    }\r\n}<\/pre>\n<p>After this, textbox will appear with the values in it and the image to save the data on click.<\/p>\n<h4>Step 3-<\/h4>\n<p>On &#8216;click&#8217; event of the image our data should be saved. So in our module.xml file in design\/adminhtml\/default\/default, we add the following code inside the handler<\/p>\n<pre class=\"brush:php\">&lt;reference name=\"js\"&gt;\r\n    &lt;block type=\"core\/template\" name=\"edit\" template=\"mpeticketsystem\/edit.phtml\" \/&gt;\r\n&lt;\/reference&gt;\r\n<\/pre>\n<h4>Step 4-<\/h4>\n<p>Next in edit.phtml file we can write our jquery where we call our controller through ajax on click of the image.<\/p>\n<pre class=\"brush:js\">$(document).ready(function(){\r\n    $(document).on('click','[id^=addName]',function(){\r\n        var id = this.id;\r\n        var pro_id = id.substring(7);\r\n        var prev = $(this).prevAll(\"input[type=text]\").val()\r\n\r\n        $.ajax({\r\n            url: \"&lt;?php echo Mage::helper('adminhtml')-&gt;getUrl('module\/adminhtml_index\/functionName') ?&gt;\",\r\n            type: 'get',\r\n            dataType: 'json',\r\n            data: { id: this.id, pro_id: pro_id, text: prev },\r\n            beforeSend:function() {\r\n    \t        Element.show('loading-mask');\r\n    \t\t\t    },\r\n            complete:function() {\r\n    \t        Element.hide('loading-mask');\r\n    \t\t\t    },\r\n            success: function(transport){\r\n                var data = transport;\r\n                if(data['error'] == true) {\r\n                    alert(data['items']);\r\n                } else {\r\n                    alert(\"Updated\");\r\n                }\r\n            }\r\n        });\r\n    });\r\n});<\/pre>\n<h4>Step 5-<\/h4>\n<p>At last in our controller file we write code to save the data<\/p>\n<pre class=\"brush:php\">public function updateproductnameAction() {\r\n    $params = $this-&gt;getRequest()-&gt;getParams();\r\n    $data = Mage::getModel('module\/model')-&gt;load($params['pro_id']);\r\n    try{\r\n        $data-&gt;setName($params['text']);\r\n        $data-&gt;save();\r\n        $response=array('error'=&gt;false);\r\n    } catch (Exception $e) {\r\n        $response=array('items'=&gt;$e-&gt;getMessage(),'error'=&gt;true);\r\n    }\r\n    $this-&gt;getResponse()-&gt;setBody(Mage::helper('core')-&gt;jsonEncode($response));\r\n}<\/pre>\n<p>This will save the text written inside the textbox.<\/p>\n<p>This example is for a single column and we can implement it for several columns as required.<\/p>\n<p>Hope this example helps. Good luck.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Inline grid edit in admin panel makes life easier and edits faster as there is no need to redirect the page to edit a row in a grid. We can edit on the row itself. &nbsp; Step 1- We use the following code inside\u00a0_prepareColumns() for the column we want to edit in our grid file. <a href=\"https:\/\/webkul.com\/blog\/inline-grid-edit-magento-1-backend\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":164,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8,1149],"tags":[2542,5700],"class_list":["post-103860","post","type-post","status-publish","format-standard","hentry","category-magento","category-magento1-9","tag-admin-grid","tag-inline-edit"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Inline Grid Edit- Magento 1 Backend - Webkul Blog<\/title>\n<meta name=\"description\" content=\"Inline grid edit in admin panel makes life easier and edits faster as there is no need to redirect the page to edit a row in a grid. We can edit on the row itself.\" \/>\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\/inline-grid-edit-magento-1-backend\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Inline Grid Edit- Magento 1 Backend - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Inline grid edit in admin panel makes life easier and edits faster as there is no need to redirect the page to edit a row in a grid. We can edit on the row itself.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/inline-grid-edit-magento-1-backend\/\" \/>\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-12-08T07:43:06+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-12-25T08:11:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2017\/12\/Screenshot_308.png\" \/>\n<meta name=\"author\" content=\"Paul Dutta\" \/>\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=\"Paul Dutta\" \/>\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\/inline-grid-edit-magento-1-backend\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/inline-grid-edit-magento-1-backend\/\"},\"author\":{\"name\":\"Paul Dutta\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/41a945ef9d13b037b8483b2340ae6748\"},\"headline\":\"Inline Grid Edit- Magento 1 Backend\",\"datePublished\":\"2017-12-08T07:43:06+00:00\",\"dateModified\":\"2017-12-25T08:11:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/inline-grid-edit-magento-1-backend\/\"},\"wordCount\":202,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/inline-grid-edit-magento-1-backend\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2017\/12\/Screenshot_308.png\",\"keywords\":[\"admin grid\",\"Inline Edit\"],\"articleSection\":[\"magento\",\"magento1.9\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/inline-grid-edit-magento-1-backend\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/inline-grid-edit-magento-1-backend\/\",\"url\":\"https:\/\/webkul.com\/blog\/inline-grid-edit-magento-1-backend\/\",\"name\":\"Inline Grid Edit- Magento 1 Backend - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/inline-grid-edit-magento-1-backend\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/inline-grid-edit-magento-1-backend\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2017\/12\/Screenshot_308.png\",\"datePublished\":\"2017-12-08T07:43:06+00:00\",\"dateModified\":\"2017-12-25T08:11:51+00:00\",\"description\":\"Inline grid edit in admin panel makes life easier and edits faster as there is no need to redirect the page to edit a row in a grid. We can edit on the row itself.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/inline-grid-edit-magento-1-backend\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/inline-grid-edit-magento-1-backend\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/inline-grid-edit-magento-1-backend\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/12\/Screenshot_308.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/12\/Screenshot_308.png\",\"width\":147,\"height\":150,\"caption\":\"image\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/inline-grid-edit-magento-1-backend\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Inline Grid Edit- Magento 1 Backend\"}]},{\"@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\/41a945ef9d13b037b8483b2340ae6748\",\"name\":\"Paul Dutta\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/57d5fe0b5f0a7db7ce6bf447f403ff0c10c3d2e234e4a8398a8fe1daa71888b2?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\/57d5fe0b5f0a7db7ce6bf447f403ff0c10c3d2e234e4a8398a8fe1daa71888b2?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Paul Dutta\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/paul-dutta287\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Inline Grid Edit- Magento 1 Backend - Webkul Blog","description":"Inline grid edit in admin panel makes life easier and edits faster as there is no need to redirect the page to edit a row in a grid. We can edit on the row itself.","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\/inline-grid-edit-magento-1-backend\/","og_locale":"en_US","og_type":"article","og_title":"Inline Grid Edit- Magento 1 Backend - Webkul Blog","og_description":"Inline grid edit in admin panel makes life easier and edits faster as there is no need to redirect the page to edit a row in a grid. We can edit on the row itself.","og_url":"https:\/\/webkul.com\/blog\/inline-grid-edit-magento-1-backend\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2017-12-08T07:43:06+00:00","article_modified_time":"2017-12-25T08:11:51+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2017\/12\/Screenshot_308.png","type":"","width":"","height":""}],"author":"Paul Dutta","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Paul Dutta","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/inline-grid-edit-magento-1-backend\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/inline-grid-edit-magento-1-backend\/"},"author":{"name":"Paul Dutta","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/41a945ef9d13b037b8483b2340ae6748"},"headline":"Inline Grid Edit- Magento 1 Backend","datePublished":"2017-12-08T07:43:06+00:00","dateModified":"2017-12-25T08:11:51+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/inline-grid-edit-magento-1-backend\/"},"wordCount":202,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/inline-grid-edit-magento-1-backend\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2017\/12\/Screenshot_308.png","keywords":["admin grid","Inline Edit"],"articleSection":["magento","magento1.9"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/inline-grid-edit-magento-1-backend\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/inline-grid-edit-magento-1-backend\/","url":"https:\/\/webkul.com\/blog\/inline-grid-edit-magento-1-backend\/","name":"Inline Grid Edit- Magento 1 Backend - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/inline-grid-edit-magento-1-backend\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/inline-grid-edit-magento-1-backend\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2017\/12\/Screenshot_308.png","datePublished":"2017-12-08T07:43:06+00:00","dateModified":"2017-12-25T08:11:51+00:00","description":"Inline grid edit in admin panel makes life easier and edits faster as there is no need to redirect the page to edit a row in a grid. We can edit on the row itself.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/inline-grid-edit-magento-1-backend\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/inline-grid-edit-magento-1-backend\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/inline-grid-edit-magento-1-backend\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/12\/Screenshot_308.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/12\/Screenshot_308.png","width":147,"height":150,"caption":"image"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/inline-grid-edit-magento-1-backend\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Inline Grid Edit- Magento 1 Backend"}]},{"@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\/41a945ef9d13b037b8483b2340ae6748","name":"Paul Dutta","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/57d5fe0b5f0a7db7ce6bf447f403ff0c10c3d2e234e4a8398a8fe1daa71888b2?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\/57d5fe0b5f0a7db7ce6bf447f403ff0c10c3d2e234e4a8398a8fe1daa71888b2?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Paul Dutta"},"url":"https:\/\/webkul.com\/blog\/author\/paul-dutta287\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/103860","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\/164"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=103860"}],"version-history":[{"count":5,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/103860\/revisions"}],"predecessor-version":[{"id":106092,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/103860\/revisions\/106092"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=103860"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=103860"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=103860"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}