{"id":7329,"date":"2020-05-27T16:26:09","date_gmt":"2020-05-27T16:26:09","guid":{"rendered":"https:\/\/expertwebtechnologies.com\/?p=7329"},"modified":"2025-01-07T11:57:47","modified_gmt":"2025-01-07T11:57:47","slug":"woocommerce-programmatically-remove-product-from-cart-using-product-id","status":"publish","type":"post","link":"https:\/\/eoxysit.com\/blogs\/woocommerce-programmatically-remove-product-from-cart-using-product-id\/","title":{"rendered":"WooCommerce: Programmatically Remove Product From Cart Using Product Id."},"content":{"rendered":"<div>\n<h2>Want to remove specific WooCommerce product from a cart?<\/h2>\n<p>WooCommerce provide <b>&#8216;WC()-&gt;cart-&gt;remove_cart_item(string $cart_item_key)&#8217;<\/b> function to remove a product from cart. if we go through WooCommerce <a href=\"https:\/\/woocommerce.github.io\/code-reference\/classes\/WC-Cart.html#_remove_cart_item\" target=\"blank\" rel=\"noopener noreferrer\">Documentation<\/a> , wewill find that it accepts cart_item_key as parameter.<\/p>\n<p>So All we need is to get the cart\u2019s item key and remove accordingly.<\/p>\n<p>We Know while adding an item to cart requires just its product ID, removing it from the cart we need to know the \u201ccart item key\u201d .<\/p>\n<p>Many Times in WooCommerce we need to remove a product from cart using product ID, if a certain condition is met we follow these steps:-<\/p>\n<ol>\n<li><b>Generate Cart Id From Product Id.<\/b><\/li>\n<li><b>Then Find Product In Cart Using Product Cart Id.<\/b><\/li>\n<li><b>If Product Exist Remove Product From cart.<\/b><\/li>\n<\/ol>\n<h4 style=\"margin: 0; padding: 0; font-weight: bold;\">Example :<\/h4>\n<p><b>Add this code to template redirect function.<\/b><\/p>\n<pre class=\" language-php\"><code class=\" language-php\"><span class=\"snip keyword\">function<\/span> <span class=\"snip function\">ProgrammaticallyRemoveProductFromCart<\/span>() {\r\n\u00a0if ( <span class=\"snip function\">is_admin<\/span>() ) <span class=\"snip keyword\">return<\/span>;\r\n\u00a0$product_id = <span class=\"snip number\">1234<\/span>;\r\n\u00a0$product_cart_id = <span class=\"snip function\">WC<\/span>()-&gt;cart-&gt;<span class=\"snip function\">generate_cart_id<\/span>( $product_id );\r\n\u00a0$cart_item_key = <span class=\"snip function\">WC<\/span>()-&gt;cart-&gt;<span class=\"snip function\">find_product_in_cart<\/span>( $product_cart_id );\r\n\u00a0if ( $cart_item_key ) {\r\n\u00a0\u00a0<span class=\"snip function\">WC<\/span>()-&gt;cart-&gt;<span class=\"snip function\">remove_cart_item<\/span>( $cart_item_key );\r\n\u00a0}\r\n}\r\n<span class=\"snip function\">add_action<\/span>(<span class=\"snip string\">'template_redirect'<\/span>,<span class=\"snip string\">'ProgrammaticallyRemoveProductFromCart'<\/span>); <\/code><\/pre>\n<p>This Function is used when the page reload.<br \/>\nBut in some case we need to remove it using the ajax .<\/p>\n<p>No need to worry about it, it&#8217;s same process like the previous ,the only difference is previously we used it in template_redirect hook,but now we use it in ajax function.<\/p>\n<p><b>Add this code for ajax function registration function.<\/b><\/p>\n<pre class=\" language-php\"><code class=\" language-php\"><span class=\"snip keyword\">function<\/span> <span class=\"snip function\">ProgrammaticallyRemoveProductFromCart<\/span>() {\r\n\u00a0$product_id = $_POST['product_id'];\r\n\u00a0$product_cart_id = <span class=\"snip function\">WC<\/span>()-&gt;cart-&gt;<span class=\"snip function\">generate_cart_id<\/span>( $product_id );\r\n\u00a0$cart_item_key = <span class=\"snip function\">WC<\/span>()-&gt;cart-&gt;<span class=\"snip function\">find_product_in_cart<\/span>( $product_cart_id );\r\n\u00a0if ( $cart_item_key ) {\r\n\u00a0\u00a0<span class=\"snip function\">WC<\/span>()-&gt;cart-&gt;<span class=\"snip function\">remove_cart_item<\/span>( $cart_item_key );\r\n\u00a0\u00a0<span class=\"snip keyword\">return<\/span> true;\r\n\u00a0}\r\n\u00a0<span class=\"snip keyword\">return<\/span> false;\r\n}\r\n<span class=\"snip function\">add_action<\/span>(<span class=\"snip string\">'wp_ajax_remove_item_from_cart'<\/span>, <span class=\"snip string\">'ProgrammaticallyRemoveProductFromCart'<\/span>);\r\n<span class=\"snip function\">add_action<\/span>(<span class=\"snip string\">'wp_ajax_nopriv_remove_item_from_cart'<\/span>,<span class=\"snip string\">'ProgrammaticallyRemoveProductFromCart'<\/span>);<\/code><\/pre>\n<p><b>Script:<\/b><br \/>\n<b>Add this script for calling ajax function.<\/b><\/p>\n<pre class=\" language-php\"><code class=\" language-php\"><span class=\"snip keyword\">$.ajax<\/span>({\r\n\u00a0type: <span class=\"snip string\">\"POST\"<\/span>,\r\n\u00a0url: <span class=\"snip string\">'#site url#\/wp-admin\/admin-ajax.php'<\/span>,\r\n\u00a0data: {action : <span class=\"snip string\">'ProgrammaticallyRemoveProductFromCart'<\/span>,<span class=\"snip string\">'product_id' <\/span>: <span class=\"snip number\">'1234'<\/span>},\r\n\u00a0success: <span class=\"snip keyword\">function<\/span>(res) {\r\n\u00a0\u00a0if (res) {\r\n\u00a0\u00a0\u00a0<span class=\"snip keyword\">alert<\/span>(<span class=\"snip string\">'Removed Successfully'<\/span>);\r\n\u00a0\u00a0}\r\n\u00a0}\r\n});<\/code><\/pre>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Want to remove specific WooCommerce product from a cart? WooCommerce provide &#8216;WC()-&gt;cart-&gt;remove_cart_item(string $cart_item_key)&#8217; function to remove a product from cart. if we go through WooCommerce Documentation , wewill find that it accepts cart_item_key as parameter. So All we need is to get the cart\u2019s item key and remove accordingly. We Know while adding an item [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":8674,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[34,35,36],"tags":[],"class_list":["post-7329","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-woocommerce","category-woocommerce-hooks","category-wordpress"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>WooCommerce: Programmatically Remove Product From Cart Using Product Id. - EoXys IT<\/title>\n<meta name=\"description\" content=\"Learn how to programmatically remove a product from the WooCommerce cart using its product ID. Follow our step-by-step guide to streamline cart management and enhance user control.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/eoxysit.com\/blogs\/woocommerce-programmatically-remove-product-from-cart-using-product-id\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"WooCommerce: Programmatically Remove Product From Cart Using Product Id. - EoXys IT\" \/>\n<meta property=\"og:description\" content=\"Learn how to programmatically remove a product from the WooCommerce cart using its product ID. Follow our step-by-step guide to streamline cart management and enhance user control.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/eoxysit.com\/blogs\/woocommerce-programmatically-remove-product-from-cart-using-product-id\/\" \/>\n<meta property=\"og:site_name\" content=\"EoXys IT\" \/>\n<meta property=\"article:published_time\" content=\"2020-05-27T16:26:09+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-01-07T11:57:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/eoxysit.com\/blogs\/wp-content\/uploads\/2021\/06\/woocommerce-products-custom-fields.png\" \/>\n\t<meta property=\"og:image:width\" content=\"768\" \/>\n\t<meta property=\"og:image:height\" content=\"430\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Shiv kumawat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Shiv kumawat\" \/>\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:\/\/eoxysit.com\/blogs\/woocommerce-programmatically-remove-product-from-cart-using-product-id\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/eoxysit.com\/blogs\/woocommerce-programmatically-remove-product-from-cart-using-product-id\/\"},\"author\":{\"name\":\"Shiv kumawat\",\"@id\":\"https:\/\/eoxysit.com\/blogs\/#\/schema\/person\/534245eb0e092114ff5b6d0d877af61e\"},\"headline\":\"WooCommerce: Programmatically Remove Product From Cart Using Product Id.\",\"datePublished\":\"2020-05-27T16:26:09+00:00\",\"dateModified\":\"2025-01-07T11:57:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/eoxysit.com\/blogs\/woocommerce-programmatically-remove-product-from-cart-using-product-id\/\"},\"wordCount\":221,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/eoxysit.com\/blogs\/woocommerce-programmatically-remove-product-from-cart-using-product-id\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/eoxysit.com\/blogs\/wp-content\/uploads\/2021\/06\/woocommerce-products-custom-fields.png\",\"articleSection\":[\"Woocommerce\",\"Woocommerce Hooks\",\"WordPress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/eoxysit.com\/blogs\/woocommerce-programmatically-remove-product-from-cart-using-product-id\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/eoxysit.com\/blogs\/woocommerce-programmatically-remove-product-from-cart-using-product-id\/\",\"url\":\"https:\/\/eoxysit.com\/blogs\/woocommerce-programmatically-remove-product-from-cart-using-product-id\/\",\"name\":\"WooCommerce: Programmatically Remove Product From Cart Using Product Id. - EoXys IT\",\"isPartOf\":{\"@id\":\"https:\/\/eoxysit.com\/blogs\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/eoxysit.com\/blogs\/woocommerce-programmatically-remove-product-from-cart-using-product-id\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/eoxysit.com\/blogs\/woocommerce-programmatically-remove-product-from-cart-using-product-id\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/eoxysit.com\/blogs\/wp-content\/uploads\/2021\/06\/woocommerce-products-custom-fields.png\",\"datePublished\":\"2020-05-27T16:26:09+00:00\",\"dateModified\":\"2025-01-07T11:57:47+00:00\",\"author\":{\"@id\":\"https:\/\/eoxysit.com\/blogs\/#\/schema\/person\/534245eb0e092114ff5b6d0d877af61e\"},\"description\":\"Learn how to programmatically remove a product from the WooCommerce cart using its product ID. Follow our step-by-step guide to streamline cart management and enhance user control.\",\"breadcrumb\":{\"@id\":\"https:\/\/eoxysit.com\/blogs\/woocommerce-programmatically-remove-product-from-cart-using-product-id\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/eoxysit.com\/blogs\/woocommerce-programmatically-remove-product-from-cart-using-product-id\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/eoxysit.com\/blogs\/woocommerce-programmatically-remove-product-from-cart-using-product-id\/#primaryimage\",\"url\":\"https:\/\/eoxysit.com\/blogs\/wp-content\/uploads\/2021\/06\/woocommerce-products-custom-fields.png\",\"contentUrl\":\"https:\/\/eoxysit.com\/blogs\/wp-content\/uploads\/2021\/06\/woocommerce-products-custom-fields.png\",\"width\":768,\"height\":430,\"caption\":\"Code\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/eoxysit.com\/blogs\/woocommerce-programmatically-remove-product-from-cart-using-product-id\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/eoxysit.com\/blogs\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"WooCommerce: Programmatically Remove Product From Cart Using Product Id.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/eoxysit.com\/blogs\/#website\",\"url\":\"https:\/\/eoxysit.com\/blogs\/\",\"name\":\"EoXys IT\",\"description\":\"Digitise your business\",\"alternateName\":\"Eoxys It\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/eoxysit.com\/blogs\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/eoxysit.com\/blogs\/#\/schema\/person\/534245eb0e092114ff5b6d0d877af61e\",\"name\":\"Shiv kumawat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/eoxysit.com\/blogs\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/eoxysit.com\/blogs\/wp-content\/uploads\/2025\/03\/CEO-150x150.png\",\"contentUrl\":\"https:\/\/eoxysit.com\/blogs\/wp-content\/uploads\/2025\/03\/CEO-150x150.png\",\"caption\":\"Shiv kumawat\"},\"description\":\"\\\"Shiv kumawat is the Executive Director and CEO of Eoxys It Solution LLP and the strategic mind behind the company\\\"s growth. His expertise in operational efficiency and team leadership empowers his colleagues to excel and innovate.\u201d\",\"sameAs\":[\"https:\/\/eoxysit.com\/\"],\"url\":\"https:\/\/eoxysit.com\/blogs\/author\/shivkumawat1985\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"WooCommerce: Programmatically Remove Product From Cart Using Product Id. - EoXys IT","description":"Learn how to programmatically remove a product from the WooCommerce cart using its product ID. Follow our step-by-step guide to streamline cart management and enhance user control.","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:\/\/eoxysit.com\/blogs\/woocommerce-programmatically-remove-product-from-cart-using-product-id\/","og_locale":"en_US","og_type":"article","og_title":"WooCommerce: Programmatically Remove Product From Cart Using Product Id. - EoXys IT","og_description":"Learn how to programmatically remove a product from the WooCommerce cart using its product ID. Follow our step-by-step guide to streamline cart management and enhance user control.","og_url":"https:\/\/eoxysit.com\/blogs\/woocommerce-programmatically-remove-product-from-cart-using-product-id\/","og_site_name":"EoXys IT","article_published_time":"2020-05-27T16:26:09+00:00","article_modified_time":"2025-01-07T11:57:47+00:00","og_image":[{"width":768,"height":430,"url":"https:\/\/eoxysit.com\/blogs\/wp-content\/uploads\/2021\/06\/woocommerce-products-custom-fields.png","type":"image\/png"}],"author":"Shiv kumawat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Shiv kumawat","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/eoxysit.com\/blogs\/woocommerce-programmatically-remove-product-from-cart-using-product-id\/#article","isPartOf":{"@id":"https:\/\/eoxysit.com\/blogs\/woocommerce-programmatically-remove-product-from-cart-using-product-id\/"},"author":{"name":"Shiv kumawat","@id":"https:\/\/eoxysit.com\/blogs\/#\/schema\/person\/534245eb0e092114ff5b6d0d877af61e"},"headline":"WooCommerce: Programmatically Remove Product From Cart Using Product Id.","datePublished":"2020-05-27T16:26:09+00:00","dateModified":"2025-01-07T11:57:47+00:00","mainEntityOfPage":{"@id":"https:\/\/eoxysit.com\/blogs\/woocommerce-programmatically-remove-product-from-cart-using-product-id\/"},"wordCount":221,"commentCount":0,"image":{"@id":"https:\/\/eoxysit.com\/blogs\/woocommerce-programmatically-remove-product-from-cart-using-product-id\/#primaryimage"},"thumbnailUrl":"https:\/\/eoxysit.com\/blogs\/wp-content\/uploads\/2021\/06\/woocommerce-products-custom-fields.png","articleSection":["Woocommerce","Woocommerce Hooks","WordPress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/eoxysit.com\/blogs\/woocommerce-programmatically-remove-product-from-cart-using-product-id\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/eoxysit.com\/blogs\/woocommerce-programmatically-remove-product-from-cart-using-product-id\/","url":"https:\/\/eoxysit.com\/blogs\/woocommerce-programmatically-remove-product-from-cart-using-product-id\/","name":"WooCommerce: Programmatically Remove Product From Cart Using Product Id. - EoXys IT","isPartOf":{"@id":"https:\/\/eoxysit.com\/blogs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/eoxysit.com\/blogs\/woocommerce-programmatically-remove-product-from-cart-using-product-id\/#primaryimage"},"image":{"@id":"https:\/\/eoxysit.com\/blogs\/woocommerce-programmatically-remove-product-from-cart-using-product-id\/#primaryimage"},"thumbnailUrl":"https:\/\/eoxysit.com\/blogs\/wp-content\/uploads\/2021\/06\/woocommerce-products-custom-fields.png","datePublished":"2020-05-27T16:26:09+00:00","dateModified":"2025-01-07T11:57:47+00:00","author":{"@id":"https:\/\/eoxysit.com\/blogs\/#\/schema\/person\/534245eb0e092114ff5b6d0d877af61e"},"description":"Learn how to programmatically remove a product from the WooCommerce cart using its product ID. Follow our step-by-step guide to streamline cart management and enhance user control.","breadcrumb":{"@id":"https:\/\/eoxysit.com\/blogs\/woocommerce-programmatically-remove-product-from-cart-using-product-id\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/eoxysit.com\/blogs\/woocommerce-programmatically-remove-product-from-cart-using-product-id\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/eoxysit.com\/blogs\/woocommerce-programmatically-remove-product-from-cart-using-product-id\/#primaryimage","url":"https:\/\/eoxysit.com\/blogs\/wp-content\/uploads\/2021\/06\/woocommerce-products-custom-fields.png","contentUrl":"https:\/\/eoxysit.com\/blogs\/wp-content\/uploads\/2021\/06\/woocommerce-products-custom-fields.png","width":768,"height":430,"caption":"Code"},{"@type":"BreadcrumbList","@id":"https:\/\/eoxysit.com\/blogs\/woocommerce-programmatically-remove-product-from-cart-using-product-id\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/eoxysit.com\/blogs\/"},{"@type":"ListItem","position":2,"name":"WooCommerce: Programmatically Remove Product From Cart Using Product Id."}]},{"@type":"WebSite","@id":"https:\/\/eoxysit.com\/blogs\/#website","url":"https:\/\/eoxysit.com\/blogs\/","name":"EoXys IT","description":"Digitise your business","alternateName":"Eoxys It","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/eoxysit.com\/blogs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/eoxysit.com\/blogs\/#\/schema\/person\/534245eb0e092114ff5b6d0d877af61e","name":"Shiv kumawat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/eoxysit.com\/blogs\/#\/schema\/person\/image\/","url":"https:\/\/eoxysit.com\/blogs\/wp-content\/uploads\/2025\/03\/CEO-150x150.png","contentUrl":"https:\/\/eoxysit.com\/blogs\/wp-content\/uploads\/2025\/03\/CEO-150x150.png","caption":"Shiv kumawat"},"description":"\"Shiv kumawat is the Executive Director and CEO of Eoxys It Solution LLP and the strategic mind behind the company\"s growth. His expertise in operational efficiency and team leadership empowers his colleagues to excel and innovate.\u201d","sameAs":["https:\/\/eoxysit.com\/"],"url":"https:\/\/eoxysit.com\/blogs\/author\/shivkumawat1985\/"}]}},"_links":{"self":[{"href":"https:\/\/eoxysit.com\/blogs\/wp-json\/wp\/v2\/posts\/7329","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/eoxysit.com\/blogs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/eoxysit.com\/blogs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/eoxysit.com\/blogs\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/eoxysit.com\/blogs\/wp-json\/wp\/v2\/comments?post=7329"}],"version-history":[{"count":0,"href":"https:\/\/eoxysit.com\/blogs\/wp-json\/wp\/v2\/posts\/7329\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/eoxysit.com\/blogs\/wp-json\/wp\/v2\/media\/8674"}],"wp:attachment":[{"href":"https:\/\/eoxysit.com\/blogs\/wp-json\/wp\/v2\/media?parent=7329"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/eoxysit.com\/blogs\/wp-json\/wp\/v2\/categories?post=7329"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/eoxysit.com\/blogs\/wp-json\/wp\/v2\/tags?post=7329"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}