{"id":75,"date":"2018-10-14T18:01:42","date_gmt":"2018-10-14T10:01:42","guid":{"rendered":"https:\/\/www.intelliwolf.com\/?p=75"},"modified":"2022-04-11T14:06:42","modified_gmt":"2022-04-11T06:06:42","slug":"customize-post-meta-astra","status":"publish","type":"post","link":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/customize-post-meta-astra\/","title":{"rendered":"How To Customize The Post Meta In Astra"},"content":{"rendered":"\n

Astra is a popular WordPress theme, that I use on many of my sites. It's lightweight and looks great, but sometimes you just want to customize it more than it normally allows. Thankfully it has plenty of hooks.<\/p>\n\n\n\n

By default, the post meta in Astra looks like this:<\/p>\n\n\n\n

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

How to customize the post meta in Astra:<\/p>\n\n\n\n

  1. Go to the standard WordPress Customizer (link in your menu bar)<\/li>
  2. Navigate to Blog -> Single Post<\/strong><\/li>
  3. Click the eye icon to make elements visible<\/a><\/li>
  4. Drag the elements to reorder them<\/a><\/li><\/ol>\n\n\n\n

    To get the post meta to look the way I have in the image above, I've just got Author and Publish Date selected. The slash in between is automatically inserted.<\/p>\n\n\n\n

    If you're trying to move the post meta, instead of changing it, check out our tutorial on moving Astra's post meta<\/a>.<\/p>\n\n\n\n

    How to make Astra post meta elements visible<\/h2>\n\n\n\n

    You can choose to show or hide Astra post meta elements through the Customizer.<\/p>\n\n\n\n

    In the Customizer, go to Blog -> Single Post<\/em> to edit the meta for single posts or to Blog -> Blog \/ Archive<\/em> to edit the meta on category & tag pages and the home page if it's not set to a static page.<\/p>\n\n\n\n

    Under Meta<\/em>, click the eye icon to hide an element.<\/p>\n\n\n\n

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

    Click a crossed out eye to make an element visible.<\/p>\n\n\n\n

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

    How to reorder Astra post meta items<\/h2>\n\n\n\n

    To reorder the elements in Astra's post meta, go to Blog -> Single Post<\/em> or Blog -> Blog \/ Archive<\/em> in the WordPress Theme Customizer.<\/p>\n\n\n\n

    Under Meta<\/em>, you can click and drag any of the elements to reorder them.<\/p>\n\n\n\n

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

    You should see the display refresh as you're working.<\/p>\n\n\n\n

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

    You can also reorder hidden elements, but obviously that will have no effect on the layout unless you make them visible.<\/p>\n\n\n\n

    How To Change The Slash That Astra Automatically Adds To Post Meta<\/h2>\n\n\n\n

    The slash that Astra automatically adds between the elements of the post meta is usually fine, but sometimes you want something else.<\/p>\n\n\n\n

    How do you change the slash that Astra automatically adds to the post meta? Add a filter to astra_single_post_meta<\/em> and astra_blog_post_meta <\/em>that fetches astra_get_post_meta<\/em> with your desired separator<\/strong>.<\/p>\n\n\n\n

    This is the code to make that happen:<\/p>\n\n\n\n

    add_filter( 'astra_single_post_meta', 'custom_post_meta' );\nadd_filter( 'astra_blog_post_meta', 'custom_post_meta' );\n\nfunction custom_post_meta( $old_meta )\n{\n $post_meta = astra_get_option( 'blog-single-meta' );\n if ( !$post_meta ) return $old_meta;\n \n $new_output = astra_get_post_meta( $post_meta, \":\" );\n if ( !$new_output ) return $old_meta;\n \n return \"<div class='entry-meta'>$new_output<\/div>\";\n}<\/code><\/pre>\n\n\n\n

    You put that code into the functions.php<\/em> file of your child theme<\/a><\/strong>. Never edit the Astra files directly.<\/p>\n\n\n\n

    You want to hook into both astra_single_post_meta<\/em> and astra_blog_post_meta<\/em> so that the changes you make apply to both the single page and other pages like the blogroll and search page. If you just want to change it on the single posts, just use astra_single_post_meta<\/em>.<\/p>\n\n\n\n

    The call to astra_get_option()<\/em> pulls in the Customizer settings you did above.<\/p>\n\n\n\n

    After error checking, that then gets passed into\u00a0astra_get_post_meta()<\/em>, which constructs the post meta as a string. The second argument is the new separator, in this instance a colon, but you can do any character or nothing.<\/p>\n\n\n\n

    How to add custom html separators<\/h2>\n\n\n\n

    You can even pass html in as the separator, maybe something like a Font Awesome tag. Since Astra doesn't come with Font Awesome installed, you can use something like the Better Font Awesome plugin<\/a> instead. You don't need to worry about this if you use a page builder like Beaver Builder or Elementor, like I normally do.<\/p>\n\n\n\n

    Now it looks like this:<\/p>\n\n\n\n

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

    To get it to look like this, I changed $new_output<\/em> to:<\/p>\n\n\n\n

    $new_output = astra_get_post_meta($post_meta, \"&nbsp;&nbsp;<i class='fa fa-calendar'><\/i>\");<\/code><\/pre>\n\n\n\n

    Remember, whatever you put in as the separator will be the separator for each of the elements of the post meta. If you have more elements than what I have here, it could look a little weird.<\/p>\n\n\n\n

    If you want to have multiple, individual Font Awesome icons in the post meta, you'll have to rewrite astra_get_post_meta()<\/em>, which you can find in
    astra\/inc\/blog\/blog-config.php<\/em>.<\/p>\n\n\n\n

    The code above will only change the post meta on single posts. If you want to change the formatting on category pages, use this code as well or instead:<\/p>\n\n\n\n

    add_filter('astra_blog_post_meta', 'custom_blog_meta');\nfunction custom_blog_meta($old_meta)\n{\n $post_meta = astra_get_option('blog-meta');\n if (!$post_meta) return $old_meta;\n \n $new_output = astra_get_post_meta($post_meta, \":\");\n if (!$new_output) return $old_meta;\n \n return \"<div class='entry-meta'>$new_output<\/div>\";\n}<\/code><\/pre>\n\n\n\n

    How To Display \"Last Modified\" Date<\/h2>\n\n\n\n

    Sometimes you want to display the Last Modified or Last Updated date in your post meta. You might want to do this instead of the Published Date or as well as it.<\/p>\n\n\n\n

    How do you display the \"Last Modified\" date in Astra? The \"Last Modified\" date is already in the html of the post meta. All you need to do is unhide it with CSS. Put this code into your custom CSS:<\/strong><\/p>\n\n\n\n

    .post .posted-on .updated {\n display: inline;\n}<\/code><\/pre>\n\n\n\n

    To hide the Published Date, put this code into your custom CSS:<\/p>\n\n\n\n

    .post .posted-on .published {\n\tdisplay: none;\n}<\/code><\/pre>\n\n\n\n

    How To Modify The Post Meta Date<\/h2>\n\n\n\n

    Lastly, the whole reason I went down this particular rabbit hole was to figure out how to modify the post meta date with my own text. I wanted something that looked like this:<\/p>\n\n\n\n

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

    How do you modify the post meta date in Astra? Replicate astra_post_date()<\/em>, add your own text or formatting and return the output<\/strong>.<\/p>\n\n\n\n

    To get the post meta looking the way it is in this picture, I used the following code, in combination with the filters and CSS mentioned above:<\/p>\n\n\n\n

    \/* Replaces same named function in \/inc\/blog\/blog-config.php *\/\nfunction astra_post_date()\n{\n $format = apply_filters('astra_post_date_format', '');\n $published = esc_html(get_the_date($format));\n $modified = esc_html(get_the_modified_date($format));\n\n $output = '<p class=\"posted-on\">';\n $output .= 'Published: <span class=\"published\" ';\n $output .= 'itemprop=\"datePublished\">' . $published;\n $output .= '<\/span><br>';\n $output .= 'Last Modified: <span class=\"updated\" ';\n $output .= 'itemprop=\"dateModified\">' . $modified . '<\/span>';\n $output .= '<\/p>';\n \n return apply_filters('astra_post_date', $output);\n}<\/code><\/pre>\n\n\n\n

    You put that code in your functions.php<\/em> file of your child theme<\/a>.<\/p>\n\n\n\n

    I broke up the $output<\/em> lines for ease of reading in this tutorial. Change it to suit your code.<\/p>\n\n\n\n

    Play around with that code to get it looking the way you want. It should be pretty clear what each part does. If you get stuck, just comment below and I'll help you out.<\/p>\n","protected":false},"excerpt":{"rendered":"

    Astra is a popular WordPress theme, that I use on many of my sites. It’s lightweight and looks great, but sometimes you just want to customize it more than it normally allows. Thankfully it has plenty of hooks. By default, the post meta in Astra looks like this: How to customize the post meta in<\/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 Customize The Post Meta In Astra<\/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\/customize-post-meta-astra\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Customize The Post Meta In Astra\" \/>\n<meta property=\"og:description\" content=\"Astra is a popular WordPress theme, that I use on many of my sites. It's lightweight and looks great, but sometimes you just want to customize it more than it normally allows. Thankfully it has plenty of hooks. By default, the post meta in Astra looks like this: How to customize the post meta in\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.intelliwolf.com\/customize-post-meta-astra\/\" \/>\n<meta property=\"og:site_name\" content=\"Intelliwolf\" \/>\n<meta property=\"article:published_time\" content=\"2018-10-14T10:01:42+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\/2018-10-14-customize-post-meta-2.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=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.intelliwolf.com\/customize-post-meta-astra\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.intelliwolf.com\/customize-post-meta-astra\/\"},\"author\":{\"name\":\"Mike Haydon\",\"@id\":\"https:\/\/www.intelliwolf.com\/#\/schema\/person\/7209e3ff14822e4d70d5f194a310f343\"},\"headline\":\"How To Customize The Post Meta In Astra\",\"datePublished\":\"2018-10-14T10:01:42+00:00\",\"dateModified\":\"2022-04-11T06:06:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.intelliwolf.com\/customize-post-meta-astra\/\"},\"wordCount\":953,\"commentCount\":36,\"publisher\":{\"@id\":\"https:\/\/www.intelliwolf.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.intelliwolf.com\/customize-post-meta-astra\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/intelliwolf.com\/wp-content\/uploads\/2018-10-14-customize-post-meta-2.png\",\"keywords\":[\"Astra\"],\"articleSection\":[\"Theme Customization\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.intelliwolf.com\/customize-post-meta-astra\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.intelliwolf.com\/customize-post-meta-astra\/\",\"url\":\"https:\/\/www.intelliwolf.com\/customize-post-meta-astra\/\",\"name\":\"How To Customize The Post Meta In Astra\",\"isPartOf\":{\"@id\":\"https:\/\/www.intelliwolf.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.intelliwolf.com\/customize-post-meta-astra\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.intelliwolf.com\/customize-post-meta-astra\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/intelliwolf.com\/wp-content\/uploads\/2018-10-14-customize-post-meta-2.png\",\"datePublished\":\"2018-10-14T10:01:42+00:00\",\"dateModified\":\"2022-04-11T06:06:42+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.intelliwolf.com\/customize-post-meta-astra\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.intelliwolf.com\/customize-post-meta-astra\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.intelliwolf.com\/customize-post-meta-astra\/#primaryimage\",\"url\":\"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-content\/uploads\/2018-10-14-customize-post-meta-2.png\",\"contentUrl\":\"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-content\/uploads\/2018-10-14-customize-post-meta-2.png\",\"width\":600,\"height\":156},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.intelliwolf.com\/customize-post-meta-astra\/#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 Customize The Post Meta In Astra\"}]},{\"@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 Customize The Post Meta In Astra","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\/customize-post-meta-astra\/","og_locale":"en_US","og_type":"article","og_title":"How To Customize The Post Meta In Astra","og_description":"Astra is a popular WordPress theme, that I use on many of my sites. It's lightweight and looks great, but sometimes you just want to customize it more than it normally allows. Thankfully it has plenty of hooks. By default, the post meta in Astra looks like this: How to customize the post meta in","og_url":"https:\/\/www.intelliwolf.com\/customize-post-meta-astra\/","og_site_name":"Intelliwolf","article_published_time":"2018-10-14T10:01:42+00:00","article_modified_time":"2022-04-11T06:06:42+00:00","og_image":[{"url":"https:\/\/intelliwolf.com\/wp-content\/uploads\/2018-10-14-customize-post-meta-2.png"}],"author":"Mike Haydon","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Mike Haydon","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.intelliwolf.com\/customize-post-meta-astra\/#article","isPartOf":{"@id":"https:\/\/www.intelliwolf.com\/customize-post-meta-astra\/"},"author":{"name":"Mike Haydon","@id":"https:\/\/www.intelliwolf.com\/#\/schema\/person\/7209e3ff14822e4d70d5f194a310f343"},"headline":"How To Customize The Post Meta In Astra","datePublished":"2018-10-14T10:01:42+00:00","dateModified":"2022-04-11T06:06:42+00:00","mainEntityOfPage":{"@id":"https:\/\/www.intelliwolf.com\/customize-post-meta-astra\/"},"wordCount":953,"commentCount":36,"publisher":{"@id":"https:\/\/www.intelliwolf.com\/#organization"},"image":{"@id":"https:\/\/www.intelliwolf.com\/customize-post-meta-astra\/#primaryimage"},"thumbnailUrl":"https:\/\/intelliwolf.com\/wp-content\/uploads\/2018-10-14-customize-post-meta-2.png","keywords":["Astra"],"articleSection":["Theme Customization"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.intelliwolf.com\/customize-post-meta-astra\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.intelliwolf.com\/customize-post-meta-astra\/","url":"https:\/\/www.intelliwolf.com\/customize-post-meta-astra\/","name":"How To Customize The Post Meta In Astra","isPartOf":{"@id":"https:\/\/www.intelliwolf.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.intelliwolf.com\/customize-post-meta-astra\/#primaryimage"},"image":{"@id":"https:\/\/www.intelliwolf.com\/customize-post-meta-astra\/#primaryimage"},"thumbnailUrl":"https:\/\/intelliwolf.com\/wp-content\/uploads\/2018-10-14-customize-post-meta-2.png","datePublished":"2018-10-14T10:01:42+00:00","dateModified":"2022-04-11T06:06:42+00:00","breadcrumb":{"@id":"https:\/\/www.intelliwolf.com\/customize-post-meta-astra\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.intelliwolf.com\/customize-post-meta-astra\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.intelliwolf.com\/customize-post-meta-astra\/#primaryimage","url":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-content\/uploads\/2018-10-14-customize-post-meta-2.png","contentUrl":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-content\/uploads\/2018-10-14-customize-post-meta-2.png","width":600,"height":156},{"@type":"BreadcrumbList","@id":"https:\/\/www.intelliwolf.com\/customize-post-meta-astra\/#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 Customize The Post Meta In Astra"}]},{"@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\/75"}],"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=75"}],"version-history":[{"count":3,"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/posts\/75\/revisions"}],"predecessor-version":[{"id":2523,"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/posts\/75\/revisions\/2523"}],"wp:attachment":[{"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/media?parent=75"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/categories?post=75"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/tags?post=75"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}