{"id":251964,"date":"2020-05-29T15:34:59","date_gmt":"2020-05-29T15:34:59","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=251964"},"modified":"2022-11-21T06:07:32","modified_gmt":"2022-11-21T06:07:32","slug":"how-to-override-data-table-in-shopware6","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-override-data-table-in-shopware6\/","title":{"rendered":"How to Override Data Table in Shopware 6"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction<\/h2>\n\n\n\n<p>In this blog, we are going to discuss how to override the data table in <a href=\"https:\/\/webkul.com\/shopware-development\/\" target=\"_blank\" rel=\"noreferrer noopener\">Shopware 6<\/a> at the admin end. The main aim of this blog is that we have faced a problem overriding the data tables in Shopware 6. <\/p>\n\n\n\n<p>So I thought we should share some tricky points of the data table in this blog for saving time. I hope it will help you. Now without wasting time let&#8217;s start.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Override Listing Twig File<\/h2>\n\n\n\n<p>Here we override the actions of the table and insert a new action on the table. So let&#8217;s start with entity listing.  Entity listing components have many attributes of a table. Here we are listing some useful attributes for this blog.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>:showSelection : This is used for display selection checkbox of table row, it takes boolean value.<\/li>\n\n\n\n<li>@select-item : this is event used for select single item.<\/li>\n\n\n\n<li>@select-all-items : this event used for select  multiple items.<\/li>\n\n\n\n<li>@inline-edit-save : this event used for inline edit save.<\/li>\n\n\n\n<li>@inline-edit-cancel: this event used for inline edit cancel .<\/li>\n<\/ul>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;sw-entity-listing\n     v-if=&quot;total&quot;\n      :isLoading=&quot;sellerListLoader&quot;\n       :items=&quot;marketplaceSellerCollection&quot;\n       :repository=&quot;sellerRepository&quot;\n       :showSelection=&quot;true&quot;\n        :columns=&quot;columns&quot;\n        @select-item=&quot;onSelectionChanged&quot;\n        @select-all-items=&quot;onSelectionChanged&quot;\n        @column-sort=&quot;onSortColumn&quot;\n        @inline-edit-save=&quot;onInlineEditSave&quot;\n        @inline-edit-cancel=&quot;onInlineEditCancel&quot;&gt;<\/pre>\n\n\n\n<p>Now we perform custom actions for a bulk and single row as like delete action. for this purpose, we override the bulk slot template component and under this, we can create multiple actions. we can remove the default action delete. <\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;template slot=&quot;bulk&quot;&gt;\n    {% block sw_data_grid_bulk_selected_actions_content %}\n        &lt;span class=&quot;sw-data-grid__bulk-selected bulk-link&quot;&gt;\n         &lt;a class=&quot;link link-default&quot; @click=&quot;approveSeller&quot;&gt;\n            {{ $tc(&#039;mp-product.list.approveText&#039;) }}\n          &lt;\/a&gt;&lt;\/span&gt;\n          &lt;span class=&quot;sw-data-grid__bulk-selected bulk-link&quot;&gt;\n          &lt;a class=&quot;link link-default&quot; @click=&quot;disapproveSeller&quot;&gt;\n                {{ $tc(&#039;mp-product.list.approveText&#039;) }}\n           &lt;\/a&gt;&lt;\/span&gt;\n    {% endblock %}\n &lt;\/template&gt;<\/pre>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img decoding=\"async\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2020\/05\/blog.png\" alt=\"data table shopware 6\" class=\"wp-image-251982\" width=\"786\" height=\"128\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2020\/05\/blog.png 1016w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2020\/05\/blog-300x49.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2020\/05\/blog-250x41.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2020\/05\/blog-768x125.png 768w\" sizes=\"(max-width: 786px) 100vw, 786px\" loading=\"lazy\" \/><figcaption class=\"wp-element-caption\">In this image we added new bulk action Approve and Disapprove<\/figcaption><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Perform action in index.js file<\/h2>\n\n\n\n<p>In listing js file we perform a method action for approve and disapprove bulk request. First, we are getting all the selected entity data of a table so in onSelectionChanged method we pass the selection attribute and store in define selecteditems object . This selection attribute contains all the entity data of the selected row not only id. Like as below code..<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\"> onSelectionChanged(selection) {\n    this.selectedItems = selection;\n  },<\/pre>\n\n\n\n<p>Now we perform our actions for selected data. As like we can perform an action for inline edit save and inline edit cancel.<\/p>\n\n\n\n<p>That is all for the doc data table Shopware 6. I hope it will help you. Happy Coding \ud83d\ude42<\/p>\n\n\n\n<p>Thanks. <\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction In this blog, we are going to discuss how to override the data table in Shopware 6 at the admin end. The main aim of this blog is that we have faced a problem overriding the data tables in Shopware 6. So I thought we should share some tricky points of the data table <a href=\"https:\/\/webkul.com\/blog\/how-to-override-data-table-in-shopware6\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":325,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-251964","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Override Data Table in Shopware 6 | Dev Docs<\/title>\n<meta name=\"description\" content=\"How to override Vuejs data table at admin end in Shopware 6 for performing custom action on table data as like delete action.\" \/>\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-override-data-table-in-shopware6\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Override Data Table in Shopware 6 | Dev Docs\" \/>\n<meta property=\"og:description\" content=\"How to override Vuejs data table at admin end in Shopware 6 for performing custom action on table data as like delete action.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-override-data-table-in-shopware6\/\" \/>\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=\"2020-05-29T15:34:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-11-21T06:07:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2020\/05\/blog.png\" \/>\n<meta name=\"author\" content=\"Prince Gupta\" \/>\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=\"Prince Gupta\" \/>\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-override-data-table-in-shopware6\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-override-data-table-in-shopware6\/\"},\"author\":{\"name\":\"Prince Gupta\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/669b7c5067f73a7ae2204ff4aca829fd\"},\"headline\":\"How to Override Data Table in Shopware 6\",\"datePublished\":\"2020-05-29T15:34:59+00:00\",\"dateModified\":\"2022-11-21T06:07:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-override-data-table-in-shopware6\/\"},\"wordCount\":330,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-override-data-table-in-shopware6\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2020\/05\/blog.png\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-override-data-table-in-shopware6\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-override-data-table-in-shopware6\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-override-data-table-in-shopware6\/\",\"name\":\"How to Override Data Table in Shopware 6 | Dev Docs\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-override-data-table-in-shopware6\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-override-data-table-in-shopware6\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2020\/05\/blog.png\",\"datePublished\":\"2020-05-29T15:34:59+00:00\",\"dateModified\":\"2022-11-21T06:07:32+00:00\",\"description\":\"How to override Vuejs data table at admin end in Shopware 6 for performing custom action on table data as like delete action.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-override-data-table-in-shopware6\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-override-data-table-in-shopware6\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-override-data-table-in-shopware6\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2020\/05\/blog.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2020\/05\/blog.png\",\"width\":1016,\"height\":166,\"caption\":\"blog\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-override-data-table-in-shopware6\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Override Data Table in Shopware 6\"}]},{\"@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\/669b7c5067f73a7ae2204ff4aca829fd\",\"name\":\"Prince Gupta\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/dd55a986709c72a714a8135a38f3b2cba1009ea371caec823a8547b2e01df18d?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\/dd55a986709c72a714a8135a38f3b2cba1009ea371caec823a8547b2e01df18d?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Prince Gupta\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/princegupta-wp031\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Override Data Table in Shopware 6 | Dev Docs","description":"How to override Vuejs data table at admin end in Shopware 6 for performing custom action on table data as like delete action.","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-override-data-table-in-shopware6\/","og_locale":"en_US","og_type":"article","og_title":"How to Override Data Table in Shopware 6 | Dev Docs","og_description":"How to override Vuejs data table at admin end in Shopware 6 for performing custom action on table data as like delete action.","og_url":"https:\/\/webkul.com\/blog\/how-to-override-data-table-in-shopware6\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2020-05-29T15:34:59+00:00","article_modified_time":"2022-11-21T06:07:32+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2020\/05\/blog.png","type":"","width":"","height":""}],"author":"Prince Gupta","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Prince Gupta","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-to-override-data-table-in-shopware6\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-override-data-table-in-shopware6\/"},"author":{"name":"Prince Gupta","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/669b7c5067f73a7ae2204ff4aca829fd"},"headline":"How to Override Data Table in Shopware 6","datePublished":"2020-05-29T15:34:59+00:00","dateModified":"2022-11-21T06:07:32+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-override-data-table-in-shopware6\/"},"wordCount":330,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-override-data-table-in-shopware6\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2020\/05\/blog.png","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-override-data-table-in-shopware6\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-override-data-table-in-shopware6\/","url":"https:\/\/webkul.com\/blog\/how-to-override-data-table-in-shopware6\/","name":"How to Override Data Table in Shopware 6 | Dev Docs","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-override-data-table-in-shopware6\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-override-data-table-in-shopware6\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2020\/05\/blog.png","datePublished":"2020-05-29T15:34:59+00:00","dateModified":"2022-11-21T06:07:32+00:00","description":"How to override Vuejs data table at admin end in Shopware 6 for performing custom action on table data as like delete action.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-override-data-table-in-shopware6\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-override-data-table-in-shopware6\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/how-to-override-data-table-in-shopware6\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2020\/05\/blog.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2020\/05\/blog.png","width":1016,"height":166,"caption":"blog"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-override-data-table-in-shopware6\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Override Data Table in Shopware 6"}]},{"@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\/669b7c5067f73a7ae2204ff4aca829fd","name":"Prince Gupta","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/dd55a986709c72a714a8135a38f3b2cba1009ea371caec823a8547b2e01df18d?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\/dd55a986709c72a714a8135a38f3b2cba1009ea371caec823a8547b2e01df18d?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Prince Gupta"},"url":"https:\/\/webkul.com\/blog\/author\/princegupta-wp031\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/251964","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\/325"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=251964"}],"version-history":[{"count":6,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/251964\/revisions"}],"predecessor-version":[{"id":357970,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/251964\/revisions\/357970"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=251964"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=251964"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=251964"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}