{"id":1214,"date":"2019-11-11T10:58:55","date_gmt":"2019-11-11T02:58:55","guid":{"rendered":"https:\/\/www.intelliwolf.com\/?p=1214"},"modified":"2022-04-11T14:06:42","modified_gmt":"2022-04-11T06:06:42","slug":"move-astra-post-meta","status":"publish","type":"post","link":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/move-astra-post-meta\/","title":{"rendered":"How To Move Astra Post Meta"},"content":{"rendered":"\n

This tutorial is in response to a question from one of our readers.<\/p>\n\n\n\n

This tutorial will work with both the free and paid versions of Astra<\/a>.<\/p>\n\n\n\n

We also have a tutorial on customizing the post meta appearance for Astra<\/a>. <\/p>\n\n\n\n

You'll need to have a child theme active. See our tutorial on building a child theme<\/a> if you need to make one. If you have the paid version of Astra, there's a ready-made, empty child theme in your downloads section.<\/p>\n\n\n\n

This is the layout before we started:<\/p>\n\n\n\n

\"Astra<\/figure><\/div>\n\n\n\n

And this is the layout we'll get after the code is implemented:<\/p>\n\n\n\n

\"\"<\/figure><\/div>\n\n\n\n

How to move the post meta in Astra to the bottom of the content:<\/strong><\/p>\n\n\n\n

  1. Add<\/a> a function in functions.php<\/em> of your child theme, called astra_get_single_post_title_meta()<\/em> laying out the new headline section.<\/li>
  2. Copy<\/a> wp-content\/themes\/astra\/template-parts\/single\/single-layout.php<\/em> to wp-content\/themes\/[child-theme]\/template-parts\/single\/single-layout.php<\/em> changing [child-theme]<\/em> to the folder name of your child theme.<\/li>
  3. Edit<\/a> single-layout.php<\/em> in the child theme, adding astra_single_get_post_meta()<\/em> where you want the post meta to appear.<\/li><\/ol>\n\n\n\n

    Let's go through those steps in detail.<\/p>\n\n\n\n

    Some of the code isn't formatted the way I would normally do it. I've tried to keep it as close to the original Astra code as possible.<\/p>\n\n\n\n

    Add a function laying out the new headline section<\/h2>\n\n\n\n

    Astra combines the headline and the post meta into a single function. To change that, you need to create your own version, using the same function name as they have. Because it's in a child theme, and because Astra is well programmed, your function will override the one in the parent theme.<\/p>\n\n\n\n

    The original code (I removed extra lines for readability) is:<\/p>\n\n\n\n

    function astra_get_single_post_title_meta() {\n  \/\/ Single Post Title and Single Post Meta.\n  do_action( 'astra_single_post_order_before' );\n  ?>\n  <div class=\"ast-single-post-order\">\n    <?php\n    do_action( 'astra_single_post_title_before' );\n    astra_the_title( '<h1 class=\"entry-title\" itemprop=\"headline\">', '<\/h1>' );\n    do_action( 'astra_single_post_title_after' );\n    do_action( 'astra_single_post_meta_before' );\n    astra_single_get_post_meta();\n    do_action( 'astra_single_post_meta_after' );\n    ?>\n  <\/div>\n  <?php\n  do_action( 'astra_single_post_order_after' );\n}<\/code><\/pre>\n\n\n\n

    Remove these three lines:<\/p>\n\n\n\n

    do_action( 'astra_single_post_meta_before' );\nastra_single_get_post_meta();\ndo_action( 'astra_single_post_meta_after' );<\/code><\/pre>\n\n\n\n

    Your function will be:<\/p>\n\n\n\n

    function astra_get_single_post_title_meta() {\n  \/\/ Single Post Title and Single Post Meta.\n  do_action( 'astra_single_post_order_before' );\n  ?>\n  <div class=\"ast-single-post-order\">\n    <?php\n    do_action( 'astra_single_post_title_before' );\n    astra_the_title( '<h1 class=\"entry-title\" itemprop=\"headline\">', '<\/h1>' );\n    do_action( 'astra_single_post_title_after' );\n    ?>\n  <\/div>\n  <?php\n  do_action( 'astra_single_post_order_after' );\n}<\/code><\/pre>\n\n\n\n

    Put this into the functions.php<\/em> file of your child theme.<\/p>\n\n\n\n

    In the final step, we'll put these three lines where we want the post meta to appear.<\/p>\n\n\n\n

    Copy single-layout.php from the parent theme to your child theme<\/h2>\n\n\n\n

    The next step is to take the single-layout.php<\/em> file from the parent theme and put it into your child theme, keeping the same folder structure.<\/p>\n\n\n\n

    In Astra, the file we want is under wp-content\/themes\/astra\/template-parts\/single\/single-layout.php<\/em>.<\/p>\n\n\n\n

    Copy that file to wp-content\/themes\/[child-theme]\/template-parts\/single\/single-layout.php<\/em>. Make sure you replace [child-theme]<\/em> with the folder name of your child theme.<\/p>\n\n\n\n

    For example, my child theme is intelliwolf-astra-child<\/em> (obvious is good), so I would copy the file to wp-content\/themes\/intelliwolf-astra-child\/template-parts\/single\/single-layout.php<\/em>.<\/p>\n\n\n\n

    You will probably need to create new folders in the child theme to get that file structure. It's a good idea to put blank files called index.php<\/em> into both of those new folders, to stop anyone snooping.<\/p>\n\n\n\n

    Edit the child theme's single-layout.php<\/h2>\n\n\n\n

    The last step is to add the astra_single_get_post_meta()<\/em> call in the single-layout.php<\/em> file of your child theme.<\/p>\n\n\n\n

    It's a good idea to add the before and after hooks as well. The ones we removed from the function earlier.<\/p>\n\n\n\n

    The lines we're adding are:<\/p>\n\n\n\n

    do_action( 'astra_single_post_meta_before' );\nastra_single_get_post_meta();\ndo_action( 'astra_single_post_meta_after' );<\/code><\/pre>\n\n\n\n

    For this tutorial, I put the post meta after the content and the after-content hook. With extra lines removed for readability, my single-layout.php<\/em> file now looks like:<\/p>\n\n\n\n

    <?php\n\/**\n * Template for Single post\n *\n * @package     Astra\n * @author      Astra\n * @copyright   Copyright (c) 2019, Astra\n * @link        https:\/\/wpastra.com\/\n * @since       Astra 1.0.0\n *\/\n?>\n<div <?php astra_blog_layout_class( 'single-layout-1' ); ?>>\n  <?php astra_single_header_before(); ?>\n  <header class=\"entry-header <?php astra_entry_header_class(); ?>\">\n    <?php astra_single_header_top(); ?>    \n    <?php astra_blog_post_thumbnail_and_title_order(); ?>\n    <?php astra_single_header_bottom(); ?>\n  <\/header><!-- .entry-header -->\n  <?php astra_single_header_after(); ?>\n  <div class=\"entry-content clear\" itemprop=\"text\">\n    <?php astra_entry_content_before(); ?>\n    <?php the_content(); ?>\n    <?php\n    astra_edit_post_link(\n      sprintf(\n        \/* translators: %s: Name of current post *\/\n        esc_html__( 'Edit %s', 'astra' ),\n        the_title('<span class=\"screen-reader-text\">\"','\"<\/span>',false)\n      ),\n      '<span class=\"edit-link\">',\n      '<\/span>'\n    );\n    ?>\n    <?php astra_entry_content_after(); ?>    \n    <?php\n    do_action( 'astra_single_post_meta_before' );\n    astra_single_get_post_meta();\n    do_action( 'astra_single_post_meta_after' );\n    ?> \n    <?php\n      wp_link_pages(\n        array(\n          'before'      => '<div class=\"page-links\">' . esc_html(\n             astra_default_strings(\n               'string-single-page-links-before', false\n             )\n          ),\n          'after'       => '<\/div>',\n          'link_before' => '<span class=\"page-link\">',\n          'link_after'  => '<\/span>',\n        )\n      );\n      ?>\n  <\/div><!-- .entry-content .clear -->\n<\/div><\/code><\/pre>\n\n\n\n

    Due to the way Astra lays out their code in this file, I had to wrap the lines in <?php<\/em> and ?><\/em>. This tells the code that I want it to be treated as PHP and not html.<\/p>\n\n\n\n

    So you're actually adding this to single-layout.php<\/em>:<\/p>\n\n\n\n

    <?php\ndo_action( 'astra_single_post_meta_before' );\nastra_single_get_post_meta();\ndo_action( 'astra_single_post_meta_after' );\n?><\/code><\/pre>\n\n\n\n

    <\/p>\n","protected":false},"excerpt":{"rendered":"

    This tutorial is in response to a question from one of our readers. This tutorial will work with both the free and paid versions of Astra. We also have a tutorial on customizing the post meta appearance for Astra. You’ll need to have a child theme active. See our tutorial on building a child theme<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[19],"yoast_head":"\nHow To Move Astra Post Meta<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.intelliwolf.com\/move-astra-post-meta\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Move Astra Post Meta\" \/>\n<meta property=\"og:description\" content=\"This tutorial is in response to a question from one of our readers. This tutorial will work with both the free and paid versions of Astra. We also have a tutorial on customizing the post meta appearance for Astra. You'll need to have a child theme active. See our tutorial on building a child theme\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.intelliwolf.com\/move-astra-post-meta\/\" \/>\n<meta property=\"og:site_name\" content=\"Intelliwolf\" \/>\n<meta property=\"article:published_time\" content=\"2019-11-11T02:58:55+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-04-11T06:06:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/intelliwolf.com\/wp-content\/uploads\/2019\/11\/2019-11-11-astra-post-meta-move-before-600x207.png\" \/>\n<meta name=\"author\" content=\"Mike Haydon\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mike Haydon\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.intelliwolf.com\/move-astra-post-meta\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.intelliwolf.com\/move-astra-post-meta\/\"},\"author\":{\"name\":\"Mike Haydon\",\"@id\":\"https:\/\/www.intelliwolf.com\/#\/schema\/person\/7209e3ff14822e4d70d5f194a310f343\"},\"headline\":\"How To Move Astra Post Meta\",\"datePublished\":\"2019-11-11T02:58:55+00:00\",\"dateModified\":\"2022-04-11T06:06:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.intelliwolf.com\/move-astra-post-meta\/\"},\"wordCount\":596,\"commentCount\":15,\"publisher\":{\"@id\":\"https:\/\/www.intelliwolf.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.intelliwolf.com\/move-astra-post-meta\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/intelliwolf.com\/wp-content\/uploads\/2019\/11\/2019-11-11-astra-post-meta-move-before-600x207.png\",\"keywords\":[\"Astra\"],\"articleSection\":[\"Theme Customization\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.intelliwolf.com\/move-astra-post-meta\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.intelliwolf.com\/move-astra-post-meta\/\",\"url\":\"https:\/\/www.intelliwolf.com\/move-astra-post-meta\/\",\"name\":\"How To Move Astra Post Meta\",\"isPartOf\":{\"@id\":\"https:\/\/www.intelliwolf.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.intelliwolf.com\/move-astra-post-meta\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.intelliwolf.com\/move-astra-post-meta\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/intelliwolf.com\/wp-content\/uploads\/2019\/11\/2019-11-11-astra-post-meta-move-before-600x207.png\",\"datePublished\":\"2019-11-11T02:58:55+00:00\",\"dateModified\":\"2022-04-11T06:06:42+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.intelliwolf.com\/move-astra-post-meta\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.intelliwolf.com\/move-astra-post-meta\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.intelliwolf.com\/move-astra-post-meta\/#primaryimage\",\"url\":\"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-content\/uploads\/2019\/11\/2019-11-11-astra-post-meta-move-before.png\",\"contentUrl\":\"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-content\/uploads\/2019\/11\/2019-11-11-astra-post-meta-move-before.png\",\"width\":854,\"height\":295},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.intelliwolf.com\/move-astra-post-meta\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.intelliwolf.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Theme Customization\",\"item\":\"https:\/\/www.intelliwolf.com\/category\/theme-customization\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How To Move Astra Post Meta\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.intelliwolf.com\/#website\",\"url\":\"https:\/\/www.intelliwolf.com\/\",\"name\":\"Intelliwolf\",\"description\":\"WordPress, Web Design and Coding Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.intelliwolf.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.intelliwolf.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.intelliwolf.com\/#organization\",\"name\":\"Intelliwolf\",\"url\":\"https:\/\/www.intelliwolf.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.intelliwolf.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-content\/uploads\/intelliwolf-logo-300t.png\",\"contentUrl\":\"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-content\/uploads\/intelliwolf-logo-300t.png\",\"width\":300,\"height\":100,\"caption\":\"Intelliwolf\"},\"image\":{\"@id\":\"https:\/\/www.intelliwolf.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.intelliwolf.com\/#\/schema\/person\/7209e3ff14822e4d70d5f194a310f343\",\"name\":\"Mike Haydon\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.intelliwolf.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d5f4754fae310a04dede91d15e57c8a0?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d5f4754fae310a04dede91d15e57c8a0?s=96&d=mm&r=g\",\"caption\":\"Mike Haydon\"},\"sameAs\":[\"https:\/\/intelliwolf.com\/about-mike-haydon\/\"]}]}<\/script>\n","yoast_head_json":{"title":"How To Move Astra Post Meta","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:\/\/www.intelliwolf.com\/move-astra-post-meta\/","og_locale":"en_US","og_type":"article","og_title":"How To Move Astra Post Meta","og_description":"This tutorial is in response to a question from one of our readers. This tutorial will work with both the free and paid versions of Astra. We also have a tutorial on customizing the post meta appearance for Astra. You'll need to have a child theme active. See our tutorial on building a child theme","og_url":"https:\/\/www.intelliwolf.com\/move-astra-post-meta\/","og_site_name":"Intelliwolf","article_published_time":"2019-11-11T02:58:55+00:00","article_modified_time":"2022-04-11T06:06:42+00:00","og_image":[{"url":"https:\/\/intelliwolf.com\/wp-content\/uploads\/2019\/11\/2019-11-11-astra-post-meta-move-before-600x207.png"}],"author":"Mike Haydon","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Mike Haydon","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.intelliwolf.com\/move-astra-post-meta\/#article","isPartOf":{"@id":"https:\/\/www.intelliwolf.com\/move-astra-post-meta\/"},"author":{"name":"Mike Haydon","@id":"https:\/\/www.intelliwolf.com\/#\/schema\/person\/7209e3ff14822e4d70d5f194a310f343"},"headline":"How To Move Astra Post Meta","datePublished":"2019-11-11T02:58:55+00:00","dateModified":"2022-04-11T06:06:42+00:00","mainEntityOfPage":{"@id":"https:\/\/www.intelliwolf.com\/move-astra-post-meta\/"},"wordCount":596,"commentCount":15,"publisher":{"@id":"https:\/\/www.intelliwolf.com\/#organization"},"image":{"@id":"https:\/\/www.intelliwolf.com\/move-astra-post-meta\/#primaryimage"},"thumbnailUrl":"https:\/\/intelliwolf.com\/wp-content\/uploads\/2019\/11\/2019-11-11-astra-post-meta-move-before-600x207.png","keywords":["Astra"],"articleSection":["Theme Customization"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.intelliwolf.com\/move-astra-post-meta\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.intelliwolf.com\/move-astra-post-meta\/","url":"https:\/\/www.intelliwolf.com\/move-astra-post-meta\/","name":"How To Move Astra Post Meta","isPartOf":{"@id":"https:\/\/www.intelliwolf.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.intelliwolf.com\/move-astra-post-meta\/#primaryimage"},"image":{"@id":"https:\/\/www.intelliwolf.com\/move-astra-post-meta\/#primaryimage"},"thumbnailUrl":"https:\/\/intelliwolf.com\/wp-content\/uploads\/2019\/11\/2019-11-11-astra-post-meta-move-before-600x207.png","datePublished":"2019-11-11T02:58:55+00:00","dateModified":"2022-04-11T06:06:42+00:00","breadcrumb":{"@id":"https:\/\/www.intelliwolf.com\/move-astra-post-meta\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.intelliwolf.com\/move-astra-post-meta\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.intelliwolf.com\/move-astra-post-meta\/#primaryimage","url":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-content\/uploads\/2019\/11\/2019-11-11-astra-post-meta-move-before.png","contentUrl":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-content\/uploads\/2019\/11\/2019-11-11-astra-post-meta-move-before.png","width":854,"height":295},{"@type":"BreadcrumbList","@id":"https:\/\/www.intelliwolf.com\/move-astra-post-meta\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.intelliwolf.com\/"},{"@type":"ListItem","position":2,"name":"Theme Customization","item":"https:\/\/www.intelliwolf.com\/category\/theme-customization\/"},{"@type":"ListItem","position":3,"name":"How To Move Astra Post Meta"}]},{"@type":"WebSite","@id":"https:\/\/www.intelliwolf.com\/#website","url":"https:\/\/www.intelliwolf.com\/","name":"Intelliwolf","description":"WordPress, Web Design and Coding Tutorials","publisher":{"@id":"https:\/\/www.intelliwolf.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.intelliwolf.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.intelliwolf.com\/#organization","name":"Intelliwolf","url":"https:\/\/www.intelliwolf.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.intelliwolf.com\/#\/schema\/logo\/image\/","url":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-content\/uploads\/intelliwolf-logo-300t.png","contentUrl":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-content\/uploads\/intelliwolf-logo-300t.png","width":300,"height":100,"caption":"Intelliwolf"},"image":{"@id":"https:\/\/www.intelliwolf.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.intelliwolf.com\/#\/schema\/person\/7209e3ff14822e4d70d5f194a310f343","name":"Mike Haydon","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.intelliwolf.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d5f4754fae310a04dede91d15e57c8a0?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d5f4754fae310a04dede91d15e57c8a0?s=96&d=mm&r=g","caption":"Mike Haydon"},"sameAs":["https:\/\/intelliwolf.com\/about-mike-haydon\/"]}]}},"_links":{"self":[{"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/posts\/1214"}],"collection":[{"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/comments?post=1214"}],"version-history":[{"count":1,"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/posts\/1214\/revisions"}],"predecessor-version":[{"id":2638,"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/posts\/1214\/revisions\/2638"}],"wp:attachment":[{"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/media?parent=1214"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/categories?post=1214"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/tags?post=1214"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}