{"id":284,"date":"2022-03-22T01:52:19","date_gmt":"2022-03-21T18:52:19","guid":{"rendered":"https:\/\/magerubik.com\/blog\/?p=284"},"modified":"2023-04-24T08:41:59","modified_gmt":"2023-04-24T01:41:59","slug":"magento-2-how-to-override-template","status":"publish","type":"post","link":"https:\/\/magerubik.com\/blog\/magento-2-how-to-override-template\/","title":{"rendered":"Magento 2 how to override template"},"content":{"rendered":"\n<div class=\"magerubik-quote\">\n\t<p>Override template is the simplest and fastest solution to create custom templates for each store. In the following article, we will learn Magento 2 how to override template. Assume that you have read through and practiced the articles <a href=\"http:\/\/magerubik.com\/blog\/create-magento-2-extension-step-by-step\" title=\"Create Magento 2 extension\">create Magento 2 extension<\/a> and <a href=\"http:\/\/magerubik.com\/blog\/create-magento-2-theme-step-by-step\" title=\"Create Magento 2 theme\">create Magento 2 theme<\/a> or are knowledgeable about it.<\/p>\n<\/div>\n<h2 class=\"h3\"><strong>1. override template file on your theme folder<\/strong><\/h2>\n<p>This solution is the simplest, you only need copy file need override from module to your theme folder. For example if you want change content on <span class=\"code\">list.phtml<\/span> from module magento catalog you can copy file <span class=\"code\">list.phtml<\/span> form <span class=\"code\">vendor\\magento\\module-catalog\\view\\frontend\\templates\\product<\/span> to <span class=\"code\">&lt;your theme path>\\Magento_Catalog\\templates\\product<\/span><\/p>\n<p>On our example we will copy file <span class=\"code\">topbanner.phtml<\/span> from <span class=\"code\">\\app\\code\\Magerubik\\Themeoptions\\view\\frontend\\templates<\/span> to <span class=\"code\">\\app\\design\\frontend\\Magerubik\\rubikshop\\Magerubik_Themeoptions\\templates<\/span> then update it with below content to check it working<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;?php\n$themeConfig = $this->helper('Magerubik\\Themeoptions\\Helper\\Data');\n$media = $this->helper('\\Magento\\Cms\\Helper\\Wysiwyg\\Images')->getBaseUrl();\n?>\n&lt;div class=\"top_banner\">\n\t&lt;img src=\"&lt;?= $media . 'themeoptions\/' .$themeConfig-> getConfig('mrThemes\/general\/top_banner_image');?>\"\/>\n\t&lt;div class=\"capption\">\n\t\tAdd your content here\n\t&lt;\/div>\n&lt;\/div>\n&lt;style>\n.top_banner {position: relative;}\n.top_banner > img {width: 100%;max-height: 300px;object-fit: cover;}\n.top_banner .capption {position: absolute;bottom: 15px;font-weight: 600;text-align: center;width: 100%;}\n&lt;\/style><\/pre>\n\n\n\n<p>Now go to frontend if you see the below screenshot everything is fine.<\/p>\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/cdn2.magerubik.com\/media\/theme\/magento_override_template1.jpg\" alt=\"Magento override template\"\/><\/figure>\n<h2 class=\"h3\"><strong>2. override template file from layout file<\/strong><\/h2>\n<p>This solution use file layout to replate the path template to a new path.<\/p>\n<p>Continuous our example we will create file <span class=\"code\">default.xml<\/span> file at the path <span class=\"code\">\\app\\design\\frontend\\Magerubik\\rubikshop\\Magerubik_Themeoptions\\layout<\/span> then add below content.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"xml\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;page xmlns:xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema-instance\" xsi:noNamespaceSchemaLocation=\"urn:magento:framework:View\/Layout\/etc\/page_configuration.xsd\">\n    &lt;body>\n        &lt;referenceBlock name=\"magerubik-topbanner\">\n            &lt;action method=\"setTemplate\">\n\t\t\t\t&lt;argument name=\"template\" xsi:type=\"string\">Magerubik_Themeoptions::new_topbanner.phtml&lt;\/argument>\n\t\t\t&lt;\/action>\n        &lt;\/referenceBlock>\n    &lt;\/body>\n&lt;\/page><\/pre>\n\n\n\n<p>After create file <span class=\"code\">new_topbanner.phtml<\/span> file at the path <span class=\"code\">\\app\\code\\Magerubik\\Themeoptions\\view\\frontend\\templates<\/span> with below content to check it working.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;?php\n$themeConfig = $this->helper('Magerubik\\Themeoptions\\Helper\\Data');\n$media = $this->helper('\\Magento\\Cms\\Helper\\Wysiwyg\\Images')->getBaseUrl();\n?>\n&lt;div class=\"top_banner\">\n\t&lt;img src=\"&lt;?= $media . 'themeoptions\/' .$themeConfig-> getConfig('mrThemes\/general\/top_banner_image');?>\"\/>\n\t&lt;div class=\"capption\">\n\t\twas override from xml file\n\t&lt;\/div>\n&lt;\/div>\n&lt;style>\n.top_banner {position: relative;}\n.top_banner > img {width: 100%;max-height: 300px;object-fit: cover;}\n.top_banner .capption {position: absolute;bottom: 15px;font-weight: 600;text-align: center;width: 100%;}\n&lt;\/style><\/pre>\n\n\n\n<p>Now go to frontend if you see the below screenshot everything is fine.<\/p>\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/cdn2.magerubik.com\/media\/theme\/magento_override_template2.jpg\" alt=\"Magento override template\"\/><\/figure>\t\n<blockquote class=\"wp-block-quote\">\n\t<p>Here are 2 simple solution  Magento 2 how to override template. Magento 2 provides many solutions to override templates that we will talk about in another article. In the <a href=\"https:\/\/magerubik.com\/blog\/magento-how-can-override-layout-files\" title=\"Magento how can override layout files\">next posts<\/a> we will learn how to Override Magento 2 layout. <a href=\"https:\/\/magerubik.com\/contact\" title=\"Contact Magerubik\">Contact us<\/a> if you face any problems during the installation process.<\/p>\n<\/blockquote>\n<p class=\"simple-note\">You can download the demo code for this entire series from <a href=\"https:\/\/github.com\/magerubik\/rubikshop\" title=\"demo code on github\" rel=\"nofollow noopener\">GitHub<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Override template is the simplest and fastest solution to create custom templates for each store. In the following article, we<\/p>\n","protected":false},"author":1,"featured_media":291,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[6],"tags":[],"class_list":["post-284","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-magento-2-theme-tutorials"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Magento 2 how to override template | MageRubik<\/title>\n<meta name=\"description\" content=\"Magento 2 how to override template is the simplest and fastest solution to create custom templates for each store.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/magerubik.com\/blog\/magento-2-how-to-override-template\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Magento 2 how to override template | MageRubik\" \/>\n<meta property=\"og:description\" content=\"Magento 2 how to override template is the simplest and fastest solution to create custom templates for each store.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/magerubik.com\/blog\/magento-2-how-to-override-template\/\" \/>\n<meta property=\"og:site_name\" content=\"MageRubik\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/magerubik\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/magerubik\" \/>\n<meta property=\"article:published_time\" content=\"2022-03-21T18:52:19+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-04-24T01:41:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/magerubik.com\/blog\/wp-content\/uploads\/2022\/03\/magento-how-to-override-template.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"800\" \/>\n\t<meta property=\"og:image:height\" content=\"445\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Hilary howard\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/www.twitter.com\/magerubik\" \/>\n<meta name=\"twitter:site\" content=\"@magerubik\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Hilary howard\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/magerubik.com\/blog\/magento-2-how-to-override-template\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/magerubik.com\/blog\/magento-2-how-to-override-template\/\"},\"author\":{\"name\":\"Hilary howard\",\"@id\":\"https:\/\/magerubik.com\/blog\/#\/schema\/person\/dad797dc557c925c92436706db1359d8\"},\"headline\":\"Magento 2 how to override template\",\"datePublished\":\"2022-03-21T18:52:19+00:00\",\"dateModified\":\"2023-04-24T01:41:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/magerubik.com\/blog\/magento-2-how-to-override-template\/\"},\"wordCount\":306,\"publisher\":{\"@id\":\"https:\/\/magerubik.com\/blog\/#\/schema\/person\/dad797dc557c925c92436706db1359d8\"},\"image\":{\"@id\":\"https:\/\/magerubik.com\/blog\/magento-2-how-to-override-template\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/magerubik.com\/blog\/wp-content\/uploads\/2022\/03\/magento-how-to-override-template.jpg\",\"articleSection\":[\"Magento 2 Theme Tutorials\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/magerubik.com\/blog\/magento-2-how-to-override-template\/\",\"url\":\"https:\/\/magerubik.com\/blog\/magento-2-how-to-override-template\/\",\"name\":\"Magento 2 how to override template | MageRubik\",\"isPartOf\":{\"@id\":\"https:\/\/magerubik.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/magerubik.com\/blog\/magento-2-how-to-override-template\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/magerubik.com\/blog\/magento-2-how-to-override-template\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/magerubik.com\/blog\/wp-content\/uploads\/2022\/03\/magento-how-to-override-template.jpg\",\"datePublished\":\"2022-03-21T18:52:19+00:00\",\"dateModified\":\"2023-04-24T01:41:59+00:00\",\"description\":\"Magento 2 how to override template is the simplest and fastest solution to create custom templates for each store.\",\"breadcrumb\":{\"@id\":\"https:\/\/magerubik.com\/blog\/magento-2-how-to-override-template\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/magerubik.com\/blog\/magento-2-how-to-override-template\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/magerubik.com\/blog\/magento-2-how-to-override-template\/#primaryimage\",\"url\":\"https:\/\/magerubik.com\/blog\/wp-content\/uploads\/2022\/03\/magento-how-to-override-template.jpg\",\"contentUrl\":\"https:\/\/magerubik.com\/blog\/wp-content\/uploads\/2022\/03\/magento-how-to-override-template.jpg\",\"width\":800,\"height\":445,\"caption\":\"Magento 2 how to override template\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/magerubik.com\/blog\/magento-2-how-to-override-template\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Magerubik blog site\",\"item\":\"https:\/\/magerubik.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Magento 2 how to override template\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/magerubik.com\/blog\/#website\",\"url\":\"https:\/\/magerubik.com\/blog\/\",\"name\":\"Magerubik\",\"description\":\"MageRubik blog site\",\"publisher\":{\"@id\":\"https:\/\/magerubik.com\/blog\/#\/schema\/person\/dad797dc557c925c92436706db1359d8\"},\"alternateName\":\"Magento 2 Extension\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/magerubik.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/magerubik.com\/blog\/#\/schema\/person\/dad797dc557c925c92436706db1359d8\",\"name\":\"Hilary howard\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/magerubik.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/magerubik.com\/blog\/wp-content\/uploads\/2022\/03\/magerubik-logo.png\",\"contentUrl\":\"https:\/\/magerubik.com\/blog\/wp-content\/uploads\/2022\/03\/magerubik-logo.png\",\"width\":265,\"height\":90,\"caption\":\"Hilary howard\"},\"logo\":{\"@id\":\"https:\/\/magerubik.com\/blog\/#\/schema\/person\/image\/\"},\"sameAs\":[\"http:\/\/localhost\/blog\",\"https:\/\/www.facebook.com\/magerubik\",\"https:\/\/www.instagram.com\/magerubik\",\"https:\/\/www.linkedin.com\/magerubik\",\"https:\/\/www.pinterest.com\/magerubik\",\"https:\/\/twitter.com\/https:\/\/www.twitter.com\/magerubik\",\"https:\/\/www.myspace.com\/magerubik\",\"https:\/\/www.youtube.com\/magerubik\",\"https:\/\/www.soundcloud.com\/magerubik\",\"https:\/\/www.tumblr.com\/magerubik\",\"https:\/\/www.wikipedia.com\/magerubik\"],\"url\":\"https:\/\/magerubik.com\/blog\/author\/hilary-howard\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Magento 2 how to override template | MageRubik","description":"Magento 2 how to override template is the simplest and fastest solution to create custom templates for each store.","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:\/\/magerubik.com\/blog\/magento-2-how-to-override-template\/","og_locale":"en_US","og_type":"article","og_title":"Magento 2 how to override template | MageRubik","og_description":"Magento 2 how to override template is the simplest and fastest solution to create custom templates for each store.","og_url":"https:\/\/magerubik.com\/blog\/magento-2-how-to-override-template\/","og_site_name":"MageRubik","article_publisher":"https:\/\/www.facebook.com\/magerubik","article_author":"https:\/\/www.facebook.com\/magerubik","article_published_time":"2022-03-21T18:52:19+00:00","article_modified_time":"2023-04-24T01:41:59+00:00","og_image":[{"width":800,"height":445,"url":"https:\/\/magerubik.com\/blog\/wp-content\/uploads\/2022\/03\/magento-how-to-override-template.jpg","type":"image\/jpeg"}],"author":"Hilary howard","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/www.twitter.com\/magerubik","twitter_site":"@magerubik","twitter_misc":{"Written by":"Hilary howard","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/magerubik.com\/blog\/magento-2-how-to-override-template\/#article","isPartOf":{"@id":"https:\/\/magerubik.com\/blog\/magento-2-how-to-override-template\/"},"author":{"name":"Hilary howard","@id":"https:\/\/magerubik.com\/blog\/#\/schema\/person\/dad797dc557c925c92436706db1359d8"},"headline":"Magento 2 how to override template","datePublished":"2022-03-21T18:52:19+00:00","dateModified":"2023-04-24T01:41:59+00:00","mainEntityOfPage":{"@id":"https:\/\/magerubik.com\/blog\/magento-2-how-to-override-template\/"},"wordCount":306,"publisher":{"@id":"https:\/\/magerubik.com\/blog\/#\/schema\/person\/dad797dc557c925c92436706db1359d8"},"image":{"@id":"https:\/\/magerubik.com\/blog\/magento-2-how-to-override-template\/#primaryimage"},"thumbnailUrl":"https:\/\/magerubik.com\/blog\/wp-content\/uploads\/2022\/03\/magento-how-to-override-template.jpg","articleSection":["Magento 2 Theme Tutorials"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/magerubik.com\/blog\/magento-2-how-to-override-template\/","url":"https:\/\/magerubik.com\/blog\/magento-2-how-to-override-template\/","name":"Magento 2 how to override template | MageRubik","isPartOf":{"@id":"https:\/\/magerubik.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/magerubik.com\/blog\/magento-2-how-to-override-template\/#primaryimage"},"image":{"@id":"https:\/\/magerubik.com\/blog\/magento-2-how-to-override-template\/#primaryimage"},"thumbnailUrl":"https:\/\/magerubik.com\/blog\/wp-content\/uploads\/2022\/03\/magento-how-to-override-template.jpg","datePublished":"2022-03-21T18:52:19+00:00","dateModified":"2023-04-24T01:41:59+00:00","description":"Magento 2 how to override template is the simplest and fastest solution to create custom templates for each store.","breadcrumb":{"@id":"https:\/\/magerubik.com\/blog\/magento-2-how-to-override-template\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/magerubik.com\/blog\/magento-2-how-to-override-template\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/magerubik.com\/blog\/magento-2-how-to-override-template\/#primaryimage","url":"https:\/\/magerubik.com\/blog\/wp-content\/uploads\/2022\/03\/magento-how-to-override-template.jpg","contentUrl":"https:\/\/magerubik.com\/blog\/wp-content\/uploads\/2022\/03\/magento-how-to-override-template.jpg","width":800,"height":445,"caption":"Magento 2 how to override template"},{"@type":"BreadcrumbList","@id":"https:\/\/magerubik.com\/blog\/magento-2-how-to-override-template\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Magerubik blog site","item":"https:\/\/magerubik.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Magento 2 how to override template"}]},{"@type":"WebSite","@id":"https:\/\/magerubik.com\/blog\/#website","url":"https:\/\/magerubik.com\/blog\/","name":"Magerubik","description":"MageRubik blog site","publisher":{"@id":"https:\/\/magerubik.com\/blog\/#\/schema\/person\/dad797dc557c925c92436706db1359d8"},"alternateName":"Magento 2 Extension","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/magerubik.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/magerubik.com\/blog\/#\/schema\/person\/dad797dc557c925c92436706db1359d8","name":"Hilary howard","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/magerubik.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/magerubik.com\/blog\/wp-content\/uploads\/2022\/03\/magerubik-logo.png","contentUrl":"https:\/\/magerubik.com\/blog\/wp-content\/uploads\/2022\/03\/magerubik-logo.png","width":265,"height":90,"caption":"Hilary howard"},"logo":{"@id":"https:\/\/magerubik.com\/blog\/#\/schema\/person\/image\/"},"sameAs":["http:\/\/localhost\/blog","https:\/\/www.facebook.com\/magerubik","https:\/\/www.instagram.com\/magerubik","https:\/\/www.linkedin.com\/magerubik","https:\/\/www.pinterest.com\/magerubik","https:\/\/twitter.com\/https:\/\/www.twitter.com\/magerubik","https:\/\/www.myspace.com\/magerubik","https:\/\/www.youtube.com\/magerubik","https:\/\/www.soundcloud.com\/magerubik","https:\/\/www.tumblr.com\/magerubik","https:\/\/www.wikipedia.com\/magerubik"],"url":"https:\/\/magerubik.com\/blog\/author\/hilary-howard\/"}]}},"_links":{"self":[{"href":"https:\/\/magerubik.com\/blog\/wp-json\/wp\/v2\/posts\/284","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/magerubik.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/magerubik.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/magerubik.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/magerubik.com\/blog\/wp-json\/wp\/v2\/comments?post=284"}],"version-history":[{"count":15,"href":"https:\/\/magerubik.com\/blog\/wp-json\/wp\/v2\/posts\/284\/revisions"}],"predecessor-version":[{"id":618,"href":"https:\/\/magerubik.com\/blog\/wp-json\/wp\/v2\/posts\/284\/revisions\/618"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/magerubik.com\/blog\/wp-json\/wp\/v2\/media\/291"}],"wp:attachment":[{"href":"https:\/\/magerubik.com\/blog\/wp-json\/wp\/v2\/media?parent=284"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/magerubik.com\/blog\/wp-json\/wp\/v2\/categories?post=284"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/magerubik.com\/blog\/wp-json\/wp\/v2\/tags?post=284"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}