{"id":488,"date":"2023-02-08T14:56:57","date_gmt":"2023-02-08T07:56:57","guid":{"rendered":"https:\/\/magerubik.com\/blog\/?p=488"},"modified":"2023-04-24T08:52:02","modified_gmt":"2023-04-24T01:52:02","slug":"magento-how-can-extend-layout-file","status":"publish","type":"post","link":"https:\/\/magerubik.com\/blog\/magento-how-can-extend-layout-file\/","title":{"rendered":"Magento how can extend layout file"},"content":{"rendered":"\n<div class=\"magerubik-quote\">\n\t<p>Instead of copying the entire layout of a page and then modifying what you want to change, we call the overriding layout. with Magento 2 you just need to create an extension layout containing the changes you want which, we call the extend layout.<\/p>\n<\/div>\n<h2 class=\"h3\"><strong>1. How to Extend a layout<\/strong><\/h2>\n<p class=\"h3\"><strong>Add an extending page configuration<\/strong><\/p>\n<p><strong>if you want to extend following layouts:<\/strong><\/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;module_dir>\/view\/frontend\/layout\/&lt;layout1>.xml\n&lt;module_dir>\/view\/frontend\/layout\/&lt;layout2>.xml<\/pre>\n\n\n\n<p>Create the layout file structure like below:<\/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;your_theme_dir>\/\n\u251c\u2500\u2500 &lt;Namespace>_&lt;Module>\/\n\u2502   \u251c\u2500\u2500 layout\/\n\u2502   \u2502   \u251c\u2500\u2500 &lt;layout1>.xml\n\u2502   \u2502   \u251c\u2500\u2500 &lt;layout1>.xml<\/pre>\n\n\n\n<p><strong>For example:<\/strong> in the shop by brand module, you want to add the brand name to the product page below the &#8220;product.info.sku&#8221; block. This means you need to extend the file layout <span class=\"code\">&lt;Magento_Catalog_module_dir&gt;\/view\/frontend\/layout\/catalog_product_view.xml<\/span>, you need to crate a layout file with the same name in your custom theme , such as: <span class=\"code\">&lt;your_theme_dir&gt;\/Magerubik_Shopbybrand\/layout\/catalog_product_view.xml<\/span> then add below content to this file.<\/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;?xml version=\"1.0\"?>\n&lt;page layout=\"1column\" xmlns:xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema-instance\" xsi:noNamespaceSchemaLocation=\"urn:magento:framework:View\/Layout\/etc\/page_configuration.xsd\">\n\t&lt;body>\n        &lt;referenceContainer name=\"product.info.stock.sku\">\n\t\t\t&lt;block ifconfig=\"magerubik_shopbybrand\/product_view_page\/display_brand_name\" class=\"Magerubik\\Shopbybrand\\Block\\Brand\\BrandInformation\" name=\"brand.information.name\" template=\"Magerubik_Shopbybrand::brand\/product_view_brand_name.phtml\" after=\"product.info.sku\" \/>\n        &lt;\/referenceContainer>\n\t&lt;\/body>\n&lt;\/page><\/pre>\n\n\n\n<p class=\"h3\"><strong>add an extending page layout file<\/strong><\/p>\n<p><strong>if you want to extend the following page layout:<\/strong><\/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;module_dir>\/view\/frontend\/page_layout\/&lt;page_layout1>.xml\n&lt;module_dir>\/view\/frontend\/page_layout\/&lt;page_layout2>.xml<\/pre>\n\n\n\n<p>Create the layout file structure like below:<\/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;your_theme_dir>\/\n\u251c\u2500\u2500 &lt;Namespace>_&lt;Module>\/\n\u2502   \u251c\u2500\u2500 page_layout\/\n\u2502   \u2502   \u251c\u2500\u2500 &lt;page_layout1>.xml\n\u2502   \u2502   \u251c\u2500\u2500 &lt;page_layout2>.xml<\/pre>\n\n\n\n<p><strong>For example:<\/strong> in the shop by brand module, you want to add the brand slider to all page 1 column in &#8220;page.bottom.container&#8221; container. This means you need to extend the file layout <span class=\"code\">&lt;Magento_Theme_module_dir&gt;\/view\/frontend\/page_layout\/1column.xml<\/span>, you need to crate a layout file with the same name in your custom theme , such as: <span class=\"code\">&lt;your_theme_dir&gt;\/Magerubik_Shopbybrand\/page_layout\/1column.xml<\/span> then add below content to this file.<\/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;layout xmlns:xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema-instance\" xsi:noNamespaceSchemaLocation=\"urn:magento:framework:View\/Layout\/etc\/page_layout.xsd\">\n    &lt;referenceContainer name=\"page.bottom.container\">\n        &lt;block class=\"Magerubik\\Shopbybrand\\Block\\Widget\\BrandSlider\" name=\"featured_brands\" template=\"Magerubik_Shopbybrand::brand\/featured_brands.phtml\" \/>\n    &lt;\/referenceContainer>\n&lt;\/layout><\/pre>\n\n\n\n<blockquote class=\"wp-block-quote\">\n\t<p>Now, you have an answer to the question <strong>Magento how can extend layout file<\/strong> for you. Practice it always good luck and see you in the <a href=\"https:\/\/magerubik.com\/blog\/magento-layout-file-types\" title=\"Magento layout file types\">next posts<\/a>. <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>Instead of copying the entire layout of a page and then modifying what you want to change, we call the<\/p>\n","protected":false},"author":1,"featured_media":489,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[6],"tags":[],"class_list":["post-488","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 how can extend layout file | MageRubik<\/title>\n<meta name=\"description\" content=\"Start with magento layout changes that make your own theme special, let&#039;s learn how to extend magento layout file.\" \/>\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-how-can-extend-layout-file\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Magento how can extend layout file | MageRubik\" \/>\n<meta property=\"og:description\" content=\"Start with magento layout changes that make your own theme special, let&#039;s learn how to extend magento layout file.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/magerubik.com\/blog\/magento-how-can-extend-layout-file\/\" \/>\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=\"2023-02-08T07:56:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-04-24T01:52:02+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/magerubik.com\/blog\/wp-content\/uploads\/2023\/02\/magento-2-how-can-extend-layout-file.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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/magerubik.com\/blog\/magento-how-can-extend-layout-file\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/magerubik.com\/blog\/magento-how-can-extend-layout-file\/\"},\"author\":{\"name\":\"Hilary howard\",\"@id\":\"https:\/\/magerubik.com\/blog\/#\/schema\/person\/dad797dc557c925c92436706db1359d8\"},\"headline\":\"Magento how can extend layout file\",\"datePublished\":\"2023-02-08T07:56:57+00:00\",\"dateModified\":\"2023-04-24T01:52:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/magerubik.com\/blog\/magento-how-can-extend-layout-file\/\"},\"wordCount\":309,\"publisher\":{\"@id\":\"https:\/\/magerubik.com\/blog\/#\/schema\/person\/dad797dc557c925c92436706db1359d8\"},\"image\":{\"@id\":\"https:\/\/magerubik.com\/blog\/magento-how-can-extend-layout-file\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/magerubik.com\/blog\/wp-content\/uploads\/2023\/02\/magento-2-how-can-extend-layout-file.jpg\",\"articleSection\":[\"Magento 2 Theme Tutorials\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/magerubik.com\/blog\/magento-how-can-extend-layout-file\/\",\"url\":\"https:\/\/magerubik.com\/blog\/magento-how-can-extend-layout-file\/\",\"name\":\"Magento how can extend layout file | MageRubik\",\"isPartOf\":{\"@id\":\"https:\/\/magerubik.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/magerubik.com\/blog\/magento-how-can-extend-layout-file\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/magerubik.com\/blog\/magento-how-can-extend-layout-file\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/magerubik.com\/blog\/wp-content\/uploads\/2023\/02\/magento-2-how-can-extend-layout-file.jpg\",\"datePublished\":\"2023-02-08T07:56:57+00:00\",\"dateModified\":\"2023-04-24T01:52:02+00:00\",\"description\":\"Start with magento layout changes that make your own theme special, let's learn how to extend magento layout file.\",\"breadcrumb\":{\"@id\":\"https:\/\/magerubik.com\/blog\/magento-how-can-extend-layout-file\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/magerubik.com\/blog\/magento-how-can-extend-layout-file\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/magerubik.com\/blog\/magento-how-can-extend-layout-file\/#primaryimage\",\"url\":\"https:\/\/magerubik.com\/blog\/wp-content\/uploads\/2023\/02\/magento-2-how-can-extend-layout-file.jpg\",\"contentUrl\":\"https:\/\/magerubik.com\/blog\/wp-content\/uploads\/2023\/02\/magento-2-how-can-extend-layout-file.jpg\",\"width\":800,\"height\":445,\"caption\":\"Magento 2 how can extend layout file\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/magerubik.com\/blog\/magento-how-can-extend-layout-file\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Magerubik blog site\",\"item\":\"https:\/\/magerubik.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Magento how can extend layout file\"}]},{\"@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 how can extend layout file | MageRubik","description":"Start with magento layout changes that make your own theme special, let's learn how to extend magento layout file.","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-how-can-extend-layout-file\/","og_locale":"en_US","og_type":"article","og_title":"Magento how can extend layout file | MageRubik","og_description":"Start with magento layout changes that make your own theme special, let's learn how to extend magento layout file.","og_url":"https:\/\/magerubik.com\/blog\/magento-how-can-extend-layout-file\/","og_site_name":"MageRubik","article_publisher":"https:\/\/www.facebook.com\/magerubik","article_author":"https:\/\/www.facebook.com\/magerubik","article_published_time":"2023-02-08T07:56:57+00:00","article_modified_time":"2023-04-24T01:52:02+00:00","og_image":[{"width":800,"height":445,"url":"https:\/\/magerubik.com\/blog\/wp-content\/uploads\/2023\/02\/magento-2-how-can-extend-layout-file.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":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/magerubik.com\/blog\/magento-how-can-extend-layout-file\/#article","isPartOf":{"@id":"https:\/\/magerubik.com\/blog\/magento-how-can-extend-layout-file\/"},"author":{"name":"Hilary howard","@id":"https:\/\/magerubik.com\/blog\/#\/schema\/person\/dad797dc557c925c92436706db1359d8"},"headline":"Magento how can extend layout file","datePublished":"2023-02-08T07:56:57+00:00","dateModified":"2023-04-24T01:52:02+00:00","mainEntityOfPage":{"@id":"https:\/\/magerubik.com\/blog\/magento-how-can-extend-layout-file\/"},"wordCount":309,"publisher":{"@id":"https:\/\/magerubik.com\/blog\/#\/schema\/person\/dad797dc557c925c92436706db1359d8"},"image":{"@id":"https:\/\/magerubik.com\/blog\/magento-how-can-extend-layout-file\/#primaryimage"},"thumbnailUrl":"https:\/\/magerubik.com\/blog\/wp-content\/uploads\/2023\/02\/magento-2-how-can-extend-layout-file.jpg","articleSection":["Magento 2 Theme Tutorials"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/magerubik.com\/blog\/magento-how-can-extend-layout-file\/","url":"https:\/\/magerubik.com\/blog\/magento-how-can-extend-layout-file\/","name":"Magento how can extend layout file | MageRubik","isPartOf":{"@id":"https:\/\/magerubik.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/magerubik.com\/blog\/magento-how-can-extend-layout-file\/#primaryimage"},"image":{"@id":"https:\/\/magerubik.com\/blog\/magento-how-can-extend-layout-file\/#primaryimage"},"thumbnailUrl":"https:\/\/magerubik.com\/blog\/wp-content\/uploads\/2023\/02\/magento-2-how-can-extend-layout-file.jpg","datePublished":"2023-02-08T07:56:57+00:00","dateModified":"2023-04-24T01:52:02+00:00","description":"Start with magento layout changes that make your own theme special, let's learn how to extend magento layout file.","breadcrumb":{"@id":"https:\/\/magerubik.com\/blog\/magento-how-can-extend-layout-file\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/magerubik.com\/blog\/magento-how-can-extend-layout-file\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/magerubik.com\/blog\/magento-how-can-extend-layout-file\/#primaryimage","url":"https:\/\/magerubik.com\/blog\/wp-content\/uploads\/2023\/02\/magento-2-how-can-extend-layout-file.jpg","contentUrl":"https:\/\/magerubik.com\/blog\/wp-content\/uploads\/2023\/02\/magento-2-how-can-extend-layout-file.jpg","width":800,"height":445,"caption":"Magento 2 how can extend layout file"},{"@type":"BreadcrumbList","@id":"https:\/\/magerubik.com\/blog\/magento-how-can-extend-layout-file\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Magerubik blog site","item":"https:\/\/magerubik.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Magento how can extend layout file"}]},{"@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\/488","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=488"}],"version-history":[{"count":3,"href":"https:\/\/magerubik.com\/blog\/wp-json\/wp\/v2\/posts\/488\/revisions"}],"predecessor-version":[{"id":623,"href":"https:\/\/magerubik.com\/blog\/wp-json\/wp\/v2\/posts\/488\/revisions\/623"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/magerubik.com\/blog\/wp-json\/wp\/v2\/media\/489"}],"wp:attachment":[{"href":"https:\/\/magerubik.com\/blog\/wp-json\/wp\/v2\/media?parent=488"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/magerubik.com\/blog\/wp-json\/wp\/v2\/categories?post=488"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/magerubik.com\/blog\/wp-json\/wp\/v2\/tags?post=488"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}