{"id":23647,"date":"2021-08-11T05:48:37","date_gmt":"2021-08-11T09:48:37","guid":{"rendered":"https:\/\/plumrocket.com\/docs\/?p=23647"},"modified":"2021-11-18T05:42:03","modified_gmt":"2021-11-18T10:42:03","slug":"how-to-create-magento-amp-theme","status":"publish","type":"post","link":"https:\/\/plumrocket.com\/docs\/magento-amp\/v3\/devguide\/creating-amp-theme","title":{"rendered":"How to Create Magento AMP Theme"},"content":{"rendered":"\n<p>After installing and enabling the <a href=\"https:\/\/plumrocket.com\/magento-amp\">Magento 2 AMP extension<\/a>, you can use the default AMP Theme One for your AMP pages. However, you may want to create your custom AMP theme with different templates and styles. This article provides a step-by-step guide on how to create your custom AMP theme by inheriting the default AMP Theme One, and apply it to the storefront. <\/p>\n\n\n\n<h2 id=\"h-prerequisites\">Prerequisites<\/h2>\n\n\n\n<p>For the sake of compatibility, upgradability, and easy maintenance, do not modify AMP Theme One. To customize the design of your Magento store, create a new custom AMP&nbsp;theme inheriting the default AMP theme.<\/p>\n\n\n\n<p>The Magento mode influences the way&nbsp;static files&nbsp;are cached by Magento. In this article, we provide recommendations about theme development for developer\/default mode.<\/p>\n\n\n\n<p>We recommend enabling maintenance mode during the AMP theme creation. You can do this by running the following command:<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-bash\">php bin\/magento maintenance:enable [--ip=&lt;ip address> ... --ip=&lt;ip address>] | [ip=none]<\/code><\/pre><\/div>\n\n\n\n<p>Alternatively, you can set&nbsp;your Magento to the Developer&nbsp;mode as it speeds up development. Run the following command:<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-bash\">php bin\/magento deploy:mode:set developer<\/code><\/pre><\/div>\n\n\n\n<h2 id=\"h-create-amp-storefront-theme-walkthrough\">Create AMP Storefront Theme: Walkthrough<\/h2>\n\n\n\n<p>The high-level steps required to add a new AMP theme in the Magento system are the following:<\/p>\n\n\n\n<ol><li>Create a directory for the theme under&nbsp;<code>app\/design\/frontend\/Plumrocket\/&lt;amp_custom_theme&gt;<\/code>.<\/li><li>Add a declaration file&nbsp;<code>theme.xml<\/code><\/li><li>Add&nbsp;<code>registration.php<\/code>.<\/li><li>Create directories for images and fonts.<\/li><li>Configure your theme in the&nbsp;Admin&nbsp;panel.<\/li><li>Apply the theme for your store.<\/li><\/ol>\n\n\n\n<h2 id=\"h-create-a-theme-directory\">Create a Theme Directory<\/h2>\n\n\n\n<p>Take the following steps to create a directory for your theme:<\/p>\n\n\n\n<div class=\"wp-block-group pr-notice pr-notice-info\"><div class=\"wp-block-group__inner-container\">\n<p class=\"pr-notice-title\">Step-by-step guide:<\/p>\n\n\n\n<ol><li>Go to&nbsp;<code>&lt;magento_root&gt;\/app\/design\/frontend\/Plumrocket<\/code>.<\/li><li>Create an <code>&lt;amp_custom_theme&gt;<\/code> directory named according to your theme. Note that the name of your theme must begin with <code>amp_<\/code>.<\/li><\/ol>\n<\/div><\/div>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-bash\"> app\/design\/frontend\/\n \u251c\u2500\u2500 Plumrocket\/\n \u2502   \u2502   \u251c\u2500\u2500...&lt;amp_custom_theme>\/\n \u2502   \u2502   \u2502   \u251c\u2500\u2500 ...\n \u2502   \u2502   \u2502   \u251c\u2500\u2500 ...<\/code><\/pre><\/div>\n\n\n\n<p> <\/p>\n\n\n\n<h2 id=\"h-declare-your-theme\">Declare your theme<\/h2>\n\n\n\n<p>After creating a theme directory, you have to create <code>theme.xml<\/code> file in <code>app\/design\/frontend\/Plumrocket\/&lt;amp_custom_theme&gt;<\/code> folder. You need to specify your custom AMP theme name (&lt;title&gt; tag) and the parent theme name(&lt;parent&gt; tag) in the file. Use the following example of the <code>theme.xml<\/code> file:<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-markup\">&lt;theme xmlns:xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema-instance\" xsi:noNamespaceSchemaLocation=\"urn:magento:framework:Config\/etc\/theme.xsd\">\n    \t&lt;title>[amp_custom_theme]&lt;\/title>\n    \t&lt;parent>Plumrocket\/amp_one&lt;\/parent>\n&lt;\/theme><\/code><\/pre><\/div>\n\n\n\n<div class=\"wp-block-group pr-notice pr-notice-warning\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Important Information:<\/strong><\/p>\n\n\n\n<p>Your custom theme has to be inherited from the parent Amp Theme One theme. If you want to create your AMP theme with your custom styles and templates only, remove the &lt;parent&gt; tag.<\/p>\n<\/div><\/div>\n\n\n\n<h2 id=\"h-add-registration-php\">Add registration.php<\/h2>\n\n\n\n<p>Create a <code>registration.php<\/code> file under the <code>app\/design\/frontend\/Plumrocket\/&lt;amp_custom_theme&gt;<\/code> directory to register your theme in the system. Add the following content to the file:<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-php\">&lt;?php\n\\Magento\\Framework\\Component\\ComponentRegistrar::register(\n\t\\Magento\\Framework\\Component\\ComponentRegistrar::THEME,\n\t'frontend\/Plumrocket\/[amp_custom_theme]',\n \t__DIR__\n);<\/code><\/pre><\/div>\n\n\n\n<p>Run the following command to flush the Magento cache.<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-powershell\">php bin\/magento cache:flush<\/code><\/pre><\/div>\n\n\n\n<h2 id=\"h-configure-images\">Configure images<\/h2>\n\n\n\n<p>You need to use a custom module to set image configurations for AMP themes. Please see the <code>Plumrocket\/AmpCatalog\/etc\/view.xml<\/code> file for AMP image examples and standard dimensions.<\/p>\n\n\n\n<h2 id=\"h-create-directories-for-static-files\">Create Directories For Static Files<\/h2>\n\n\n\n<p>Your theme will contain several types of static files: <\/p>\n\n\n\n<ul><li>Fonts<\/li><li>Images<\/li><\/ul>\n\n\n\n<p>Each type should be stored in a separate sub-directory of&nbsp;<code>web<\/code>&nbsp;in your AMP theme folder:<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-bash\">app\/design\/frontend\/Plumrocket\/&lt;amp_custom_theme>\/\n\u251c\u2500\u2500 web\/ \n\u2502 \u251c\u2500\u2500 fonts\/\n\u2502 \u251c\u2500\u2500 images\/<\/code><\/pre><\/div>\n\n\n\n<p>In the&nbsp;<code>...\/&lt;amp_custom_theme&gt;\/web\/images<\/code>&nbsp;directory, you store the general theme-related static files. For example, Homepage images are stored in&nbsp;<code>...&lt;amp_custom_theme&gt;\/web\/images<\/code>.<\/p>\n\n\n\n<h3 id=\"h-css-file-location\">CSS File Location<\/h3>\n\n\n\n<p>Unlike the regular Magento themes, CSS styles are stores in <code>.phtml<\/code> files, but not in the <code>.css<\/code> files. For example, the Header 1 CSS styles are stored in the&nbsp;<code>Plumrocket_AmpTheme::html\/header\/1\/css.phtml<\/code> file.<\/p>\n\n\n\n<div class=\"wp-block-group pr-notice pr-notice-warning\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Important Information:<\/strong><\/p>\n\n\n\n<p>When you change files stored here during theme development, you need to clear the&nbsp;<code>pub\/static<\/code>&nbsp;and&nbsp;<code>var\/view_preprocessed<\/code>&nbsp;directories, and then reload the pages. Otherwise, the old versions of files are displayed on the storefront.<\/p>\n<\/div><\/div>\n\n\n\n<h3 id=\"h-to-clear-the-pub-static-directory\">To clear the <code>pub\/static<\/code> directory:<\/h3>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-bash\">rm -r &lt;magento_root>\/pub\/static\/*\/*<\/code><\/pre><\/div>\n\n\n\n<h3 id=\"h-to-clear-the-var-view_preprocessed-directory\">To clear the <code>var\/view_preprocessed<\/code> directory:<\/h3>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-bash\">rm -r &lt;magento_root>\/var\/view_preprocessed\/*<\/code><\/pre><\/div>\n\n\n\n<h2 id=\"h-your-theme-directory-structure-now\">Your Theme Directory Structure Now<\/h2>\n\n\n\n<p>At this point your theme file structure looks as follows:<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-bash\">app\/design\/frontend\/Plumrocket\/\n\u251c\u2500\u2500 &lt;amp_custom_theme>\/\n\u2502   \u251c\u2500\u2500 web\/\n\u2502   \u2502   \u251c\u2500\u2500 images\n\u2502   \u2502   \u251c\u2500\u2500 fonts\n\u2502   \u251c\u2500\u2500 registration.php\n\u2502   \u251c\u2500\u2500 theme.xml<\/code><\/pre><\/div>\n\n\n\n<h2 id=\"h-how-to-apply-amp-theme\">How to Apply AMP Theme<\/h2>\n\n\n\n<p>This section describes how to apply a theme for your store. This is a required step if you want a theme to be used on a storefront.<\/p>\n\n\n\n<div class=\"wp-block-group pr-notice pr-notice-info\"><div class=\"wp-block-group__inner-container\">\n<p class=\"pr-notice-title\">Step-by-step guide:<\/p>\n\n\n\n<ol><li>In Admin, go to <strong>Content<\/strong> -&gt; Design -&gt; <strong>Configuration<\/strong>. The Design Configuration page contains a grid with the available configuration scopes.<\/li><li>In the configuration record corresponding to your store view, click <strong>Edit<\/strong>.<\/li><\/ol>\n<\/div><\/div>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"1206\" height=\"452\" src=\"https:\/\/plumrocket.com\/docs\/wp-content\/uploads\/2021\/08\/magento-2-amp-extension-applying-amp-custom-theme-1.png\" alt=\"\" class=\"wp-image-23655\" srcset=\"https:\/\/plumrocket.com\/docs\/wp-content\/uploads\/2021\/08\/magento-2-amp-extension-applying-amp-custom-theme-1.png 1206w, https:\/\/plumrocket.com\/docs\/wp-content\/uploads\/2021\/08\/magento-2-amp-extension-applying-amp-custom-theme-1-300x112.png 300w, https:\/\/plumrocket.com\/docs\/wp-content\/uploads\/2021\/08\/magento-2-amp-extension-applying-amp-custom-theme-1-1024x384.png 1024w, https:\/\/plumrocket.com\/docs\/wp-content\/uploads\/2021\/08\/magento-2-amp-extension-applying-amp-custom-theme-1-768x288.png 768w\" sizes=\"(max-width: 1206px) 100vw, 1206px\" \/><\/figure>\n\n\n\n<div class=\"wp-block-group pr-notice pr-notice-info\"><div class=\"wp-block-group__inner-container\">\n<ol start=\"3\"><li>Under the <strong>AMP Default Theme<\/strong>, in the <strong>Applied Theme<\/strong> drop-down, select your newly created AMP theme.<\/li><li>Click <strong>Save Configuration<\/strong>.<\/li><\/ol>\n<\/div><\/div>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"1206\" height=\"574\" src=\"https:\/\/plumrocket.com\/docs\/wp-content\/uploads\/2021\/08\/magento-2-amp-extension-applying-amp-custom-theme-2.png\" alt=\"\" class=\"wp-image-23656\" srcset=\"https:\/\/plumrocket.com\/docs\/wp-content\/uploads\/2021\/08\/magento-2-amp-extension-applying-amp-custom-theme-2.png 1206w, https:\/\/plumrocket.com\/docs\/wp-content\/uploads\/2021\/08\/magento-2-amp-extension-applying-amp-custom-theme-2-300x143.png 300w, https:\/\/plumrocket.com\/docs\/wp-content\/uploads\/2021\/08\/magento-2-amp-extension-applying-amp-custom-theme-2-1024x487.png 1024w, https:\/\/plumrocket.com\/docs\/wp-content\/uploads\/2021\/08\/magento-2-amp-extension-applying-amp-custom-theme-2-768x366.png 768w\" sizes=\"(max-width: 1206px) 100vw, 1206px\" \/><\/figure>\n\n\n\n<p>Run the <code>php bin\/magento cache:flush<\/code> command to flush the Magento cache.<\/p>\n\n\n\n<div class=\"wp-block-group pr-notice pr-notice-warning\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Important Information:<\/strong><\/p>\n\n\n\n<p>The ability to create multiple custom AMP themes allows you to apply them to different store views, and therefore display different AMP content there.<\/p>\n<\/div><\/div>\n\n\n\n<p>After all the changes have been made, disable the maintenance mode by running the following command:<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-\">bin\/magento maintenance:disable [--ip=&lt;ip address> ... --ip=&lt;ip address>] | [ip=none]<\/code><\/pre><\/div>\n\n\n\n<p>If you used Production mode before, switch it back to Production by running the following command:<\/p>\n\n\n\n<div class=\"wp-block-prismatic-blocks\"><div><\/div><pre><code class=\"language-\">php bin\/magento deploy:mode:set production<\/code><\/pre><\/div>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>After installing and enabling the Magento 2 AMP extension, you can use the default AMP Theme One for your AMP pages. However, you may want to create your custom AMP theme with different templates and styles. This article provides a step-by-step guide on how to create your custom AMP theme by inheriting the default AMP &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/plumrocket.com\/docs\/magento-amp\/v3\/devguide\/creating-amp-theme\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;How to Create Magento AMP Theme&#8221;<\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"_mi_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0},"categories":[328],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v17.2 (Yoast SEO v17.2) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Create Magento AMP Theme - Plumrocket Documentation<\/title>\n<meta name=\"description\" content=\"After installing and enabling the Magento 2 AMP extension, you can use the default AMP Theme One for your AMP pages. However, you may want to create your\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/plumrocket.com\/docs\/magento-amp\/v3\/devguide\/creating-amp-theme\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Create Magento AMP Theme\" \/>\n<meta property=\"og:description\" content=\"After installing and enabling the Magento 2 AMP extension, you can use the default AMP Theme One for your AMP pages. However, you may want to create your\" \/>\n<meta property=\"og:url\" content=\"https:\/\/plumrocket.com\/docs\/magento-amp\/v3\/devguide\/creating-amp-theme\" \/>\n<meta property=\"og:site_name\" content=\"Plumrocket Documentation\" \/>\n<meta property=\"article:published_time\" content=\"2021-08-11T09:48:37+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-11-18T10:42:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/plumrocket.com\/docs\/wp-content\/uploads\/2021\/08\/magento-2-amp-extension-applying-amp-custom-theme-1.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Plumrocket\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Create Magento AMP Theme - Plumrocket Documentation","description":"After installing and enabling the Magento 2 AMP extension, you can use the default AMP Theme One for your AMP pages. However, you may want to create your","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:\/\/plumrocket.com\/docs\/magento-amp\/v3\/devguide\/creating-amp-theme","og_locale":"en_US","og_type":"article","og_title":"How to Create Magento AMP Theme","og_description":"After installing and enabling the Magento 2 AMP extension, you can use the default AMP Theme One for your AMP pages. However, you may want to create your","og_url":"https:\/\/plumrocket.com\/docs\/magento-amp\/v3\/devguide\/creating-amp-theme","og_site_name":"Plumrocket Documentation","article_published_time":"2021-08-11T09:48:37+00:00","article_modified_time":"2021-11-18T10:42:03+00:00","og_image":[{"url":"https:\/\/plumrocket.com\/docs\/wp-content\/uploads\/2021\/08\/magento-2-amp-extension-applying-amp-custom-theme-1.png"}],"twitter_card":"summary_large_image","twitter_misc":{"Written by":"Plumrocket","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebSite","@id":"https:\/\/plumrocket.com\/docs\/#website","url":"https:\/\/plumrocket.com\/docs\/","name":"Plumrocket Documentation","description":"Extensions docs, troubleshootings etc.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/plumrocket.com\/docs\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"ImageObject","@id":"https:\/\/plumrocket.com\/docs\/magento-amp\/v3\/devguide\/creating-amp-theme#primaryimage","inLanguage":"en-US","url":"https:\/\/plumrocket.com\/docs\/wp-content\/uploads\/2021\/08\/magento-2-amp-extension-applying-amp-custom-theme-1.png","contentUrl":"https:\/\/plumrocket.com\/docs\/wp-content\/uploads\/2021\/08\/magento-2-amp-extension-applying-amp-custom-theme-1.png","width":1206,"height":452},{"@type":"WebPage","@id":"https:\/\/plumrocket.com\/docs\/magento-amp\/v3\/devguide\/creating-amp-theme#webpage","url":"https:\/\/plumrocket.com\/docs\/magento-amp\/v3\/devguide\/creating-amp-theme","name":"How to Create Magento AMP Theme - Plumrocket Documentation","isPartOf":{"@id":"https:\/\/plumrocket.com\/docs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/plumrocket.com\/docs\/magento-amp\/v3\/devguide\/creating-amp-theme#primaryimage"},"datePublished":"2021-08-11T09:48:37+00:00","dateModified":"2021-11-18T10:42:03+00:00","author":{"@id":"https:\/\/plumrocket.com\/docs\/#\/schema\/person\/c96fccdb89342ae6804272265723eca8"},"description":"After installing and enabling the Magento 2 AMP extension, you can use the default AMP Theme One for your AMP pages. However, you may want to create your","breadcrumb":{"@id":"https:\/\/plumrocket.com\/docs\/magento-amp\/v3\/devguide\/creating-amp-theme#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/plumrocket.com\/docs\/magento-amp\/v3\/devguide\/creating-amp-theme"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/plumrocket.com\/docs\/magento-amp\/v3\/devguide\/creating-amp-theme#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Magento 2 Extensions","item":"https:\/\/plumrocket.com\/magento-extensions"},{"@type":"ListItem","position":2,"name":"Magento 2 AMP","item":"https:\/\/plumrocket.com\/magento-amp"},{"@type":"ListItem","position":3,"name":"Documentation","item":"https:\/\/plumrocket.com\/docs\/magento-amp"},{"@type":"ListItem","position":4,"name":"v3","item":"https:\/\/plumrocket.com\/docs\/magento-amp\/v3"},{"@type":"ListItem","position":5,"name":"Developer Guide","item":"https:\/\/plumrocket.com\/docs\/magento-amp\/v3\/devguide"},{"@type":"ListItem","position":6,"name":"How to Create Magento AMP Theme"}]},{"@type":"Person","@id":"https:\/\/plumrocket.com\/docs\/#\/schema\/person\/c96fccdb89342ae6804272265723eca8","name":"Plumrocket","image":{"@type":"ImageObject","@id":"https:\/\/plumrocket.com\/docs\/#personlogo","inLanguage":"en-US","url":"https:\/\/secure.gravatar.com\/avatar\/10c44aa45aab391250913d982e552e53?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/10c44aa45aab391250913d982e552e53?s=96&d=mm&r=g","caption":"Plumrocket"}}]}},"_links":{"self":[{"href":"https:\/\/plumrocket.com\/docs\/wp-json\/wp\/v2\/posts\/23647"}],"collection":[{"href":"https:\/\/plumrocket.com\/docs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/plumrocket.com\/docs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/plumrocket.com\/docs\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/plumrocket.com\/docs\/wp-json\/wp\/v2\/comments?post=23647"}],"version-history":[{"count":46,"href":"https:\/\/plumrocket.com\/docs\/wp-json\/wp\/v2\/posts\/23647\/revisions"}],"predecessor-version":[{"id":25118,"href":"https:\/\/plumrocket.com\/docs\/wp-json\/wp\/v2\/posts\/23647\/revisions\/25118"}],"wp:attachment":[{"href":"https:\/\/plumrocket.com\/docs\/wp-json\/wp\/v2\/media?parent=23647"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/plumrocket.com\/docs\/wp-json\/wp\/v2\/categories?post=23647"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/plumrocket.com\/docs\/wp-json\/wp\/v2\/tags?post=23647"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}