{"id":20083,"date":"2015-05-27T14:41:30","date_gmt":"2015-05-27T09:11:30","guid":{"rendered":"https:\/\/2thenew.xyz\/blog\/?p=20083"},"modified":"2015-06-26T10:44:57","modified_gmt":"2015-06-26T05:14:57","slug":"moderation-of-user-comments-in-aem-through-custom-workflow","status":"publish","type":"post","link":"https:\/\/2thenew.xyz\/blog\/moderation-of-user-comments-in-aem-through-custom-workflow\/","title":{"rendered":"Moderation of User Comments In AEM through Custom Workflow"},"content":{"rendered":"<p>Comments, reviews &amp; feedbacks are some of the vital functionalities required in almost every website these days. Leveraging the comments section is very important.<\/p>\n<p>All those comments made by the vistors cannot be published. You may have to select the comments that are to be published according to your content and its purpose.<\/p>\n<p>An <a href=\"https:\/\/2thenew.xyz\/wcm\/cq-aem-development-consulting\">AEM Comment Moderation System<\/a> gives the admin the authority to select or reject comments and go ahead with only those found relevant.<\/p>\n<p>The flowchart below describes the process:<\/p>\n<p><a href=\"\/blog\/wp-ttn-blog\/uploads\/2015\/05\/Screenshot-from-2015-05-26-111432.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-20087\" src=\"\/blog\/wp-ttn-blog\/uploads\/2015\/05\/Screenshot-from-2015-05-26-111432.png\" alt=\"Screenshot from 2015-05-26 11:14:32\" width=\"574\" height=\"530\" \/><\/a><\/p>\n<p>Normally when a user writes a comment and submits it, the comment is stored as a node under content\/usergenerated\/content\/comments\/blog as cq:Comment.<\/p>\n<p><a href=\"\/blog\/wp-ttn-blog\/uploads\/2015\/05\/Screenshot-from-2015-05-24-190808.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-20095\" src=\"\/blog\/wp-ttn-blog\/uploads\/2015\/05\/Screenshot-from-2015-05-24-190808.png\" alt=\"Screenshot from 2015-05-24 19:08:08\" width=\"765\" height=\"202\" \/><\/a><\/p>\n<p>The comment is Reverse Replicated for approval from Admin.<\/p>\n<p>Admin can approve or disapprove the comment.<\/p>\n<p><a href=\"\/blog\/wp-ttn-blog\/uploads\/2015\/05\/Screenshot-from-2015-05-13-161815.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-20098\" src=\"\/blog\/wp-ttn-blog\/uploads\/2015\/05\/Screenshot-from-2015-05-13-161815.png\" alt=\"Screenshot from 2015-05-13 16:18:15\" width=\"890\" height=\"193\" \/><\/a><\/p>\n<p>1.<strong>Custom Workflow for Comment Approval<\/strong><\/p>\n<p>[java]<br \/>\n String path = workItem.getWorkflowData().getPayload().toString();<br \/>\n        ResourceResolver resourceResolver = workflowSession.adaptTo(ResourceResolver.class);<br \/>\n        Session session = resourceResolver.adaptTo(Session.class);<br \/>\n           if (session.itemExists(path)) {<br \/>\n                Node node = (Node) session.getItem(path);<br \/>\n                node.setProperty(&quot;display&quot;, true);<br \/>\n                session.save();<br \/>\n                if (slingSettingsService.getRunModes().contains(&quot;author&quot;)) {<br \/>\n                    replicator.replicate(session, ReplicationActionType.ACTIVATE, path);<br \/>\n               }<br \/>\n\t}<br \/>\n  [\/java]<\/p>\n<p>2. <strong>Custom Workflow for Comment Rejection<\/strong><\/p>\n<p>[java]<br \/>\nString path = workItem.getWorkflowData().getPayload().toString();<br \/>\n        ResourceResolver resourceResolver = workflowSession.adaptTo(ResourceResolver.class);<br \/>\n        Session session = resourceResolver.adaptTo(Session.class);<br \/>\n            if (session.itemExists(path)) {<br \/>\n                Node node = (Node) session.getItem(path);<br \/>\n                String parent = node.getParent().getPath();<br \/>\n                node.remove();<br \/>\n                session.save();<br \/>\n                if (slingSettingsService.getRunModes().contains(&quot;author&quot;)) {<br \/>\n                    replicator.replicate(session, ReplicationActionType.ACTIVATE, parent);<br \/>\n                 }<br \/>\n\t}<br \/>\n[\/java]<\/p>\n<p>Either, if the comment is approved, it is published or else the jcr node is deleted.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Comments, reviews &amp; feedbacks are some of the vital functionalities required in almost every website these days. Leveraging the comments section is very important. All those comments made by the vistors cannot be published. You may have to select the comments that are to be published according to your content and its purpose. An AEM [&hellip;]<\/p>\n","protected":false},"author":198,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":39,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-20083","post","type-post","status-publish","format-standard","hentry","category-technology"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"TO THE NEW Digital blog on moderation of user comments through a Comment Moderation System for websites in AEM through custom workflow\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Anshika Dhingra\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.xyz\/blog\/moderation-of-user-comments-in-aem-through-custom-workflow\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"Moderation of User Comments In AEM through Custom Workflow | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"TO THE NEW Digital blog on moderation of user comments through a Comment Moderation System for websites in AEM through custom workflow\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.xyz\/blog\/moderation-of-user-comments-in-aem-through-custom-workflow\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Moderation of User Comments In AEM through Custom Workflow | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"TO THE NEW Digital blog on moderation of user comments through a Comment Moderation System for websites in AEM through custom workflow\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/moderation-of-user-comments-in-aem-through-custom-workflow\\\/#article\",\"name\":\"Moderation of User Comments In AEM through Custom Workflow | TO THE NEW Blog\",\"headline\":\"Moderation of User Comments In AEM through Custom Workflow\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/anshika-dhingra\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"\\\/blog\\\/wp-ttn-blog\\\/uploads\\\/2015\\\/05\\\/Screenshot-from-2015-05-26-111432.png\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/moderation-of-user-comments-in-aem-through-custom-workflow\\\/#articleImage\"},\"datePublished\":\"2015-05-27T14:41:30+05:30\",\"dateModified\":\"2015-06-26T10:44:57+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/moderation-of-user-comments-in-aem-through-custom-workflow\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/moderation-of-user-comments-in-aem-through-custom-workflow\\\/#webpage\"},\"articleSection\":\"Technology\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/moderation-of-user-comments-in-aem-through-custom-workflow\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"position\":2,\"name\":\"Technology\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/moderation-of-user-comments-in-aem-through-custom-workflow\\\/#listItem\",\"name\":\"Moderation of User Comments In AEM through Custom Workflow\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/moderation-of-user-comments-in-aem-through-custom-workflow\\\/#listItem\",\"position\":3,\"name\":\"Moderation of User Comments In AEM through Custom Workflow\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/anshika-dhingra\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/anshika-dhingra\\\/\",\"name\":\"Anshika Dhingra\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/moderation-of-user-comments-in-aem-through-custom-workflow\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/76cd7bc6443aa98d46e3ea173d45220961002559787d1c291f328c82804a267a?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Anshika Dhingra\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/moderation-of-user-comments-in-aem-through-custom-workflow\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/moderation-of-user-comments-in-aem-through-custom-workflow\\\/\",\"name\":\"Moderation of User Comments In AEM through Custom Workflow | TO THE NEW Blog\",\"description\":\"TO THE NEW Digital blog on moderation of user comments through a Comment Moderation System for websites in AEM through custom workflow\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/moderation-of-user-comments-in-aem-through-custom-workflow\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/anshika-dhingra\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/anshika-dhingra\\\/#author\"},\"datePublished\":\"2015-05-27T14:41:30+05:30\",\"dateModified\":\"2015-06-26T10:44:57+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Moderation of User Comments In AEM through Custom Workflow | TO THE NEW Blog","description":"TO THE NEW Digital blog on moderation of user comments through a Comment Moderation System for websites in AEM through custom workflow","canonical_url":"https:\/\/2thenew.xyz\/blog\/moderation-of-user-comments-in-aem-through-custom-workflow\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.xyz\/blog\/moderation-of-user-comments-in-aem-through-custom-workflow\/#article","name":"Moderation of User Comments In AEM through Custom Workflow | TO THE NEW Blog","headline":"Moderation of User Comments In AEM through Custom Workflow","author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/anshika-dhingra\/#author"},"publisher":{"@id":"https:\/\/2thenew.xyz\/blog\/#organization"},"image":{"@type":"ImageObject","url":"\/blog\/wp-ttn-blog\/uploads\/2015\/05\/Screenshot-from-2015-05-26-111432.png","@id":"https:\/\/2thenew.xyz\/blog\/moderation-of-user-comments-in-aem-through-custom-workflow\/#articleImage"},"datePublished":"2015-05-27T14:41:30+05:30","dateModified":"2015-06-26T10:44:57+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/2thenew.xyz\/blog\/moderation-of-user-comments-in-aem-through-custom-workflow\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/moderation-of-user-comments-in-aem-through-custom-workflow\/#webpage"},"articleSection":"Technology"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.xyz\/blog\/moderation-of-user-comments-in-aem-through-custom-workflow\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog#listItem","position":1,"name":"Home","item":"https:\/\/2thenew.xyz\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/2thenew.xyz\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/moderation-of-user-comments-in-aem-through-custom-workflow\/#listItem","name":"Moderation of User Comments In AEM through Custom Workflow"},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/moderation-of-user-comments-in-aem-through-custom-workflow\/#listItem","position":3,"name":"Moderation of User Comments In AEM through Custom Workflow","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/2thenew.xyz\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/2thenew.xyz\/blog\/"},{"@type":"Person","@id":"https:\/\/2thenew.xyz\/blog\/author\/anshika-dhingra\/#author","url":"https:\/\/2thenew.xyz\/blog\/author\/anshika-dhingra\/","name":"Anshika Dhingra","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.xyz\/blog\/moderation-of-user-comments-in-aem-through-custom-workflow\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/76cd7bc6443aa98d46e3ea173d45220961002559787d1c291f328c82804a267a?s=96&d=mm&r=g","width":96,"height":96,"caption":"Anshika Dhingra"}},{"@type":"WebPage","@id":"https:\/\/2thenew.xyz\/blog\/moderation-of-user-comments-in-aem-through-custom-workflow\/#webpage","url":"https:\/\/2thenew.xyz\/blog\/moderation-of-user-comments-in-aem-through-custom-workflow\/","name":"Moderation of User Comments In AEM through Custom Workflow | TO THE NEW Blog","description":"TO THE NEW Digital blog on moderation of user comments through a Comment Moderation System for websites in AEM through custom workflow","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.xyz\/blog\/moderation-of-user-comments-in-aem-through-custom-workflow\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/anshika-dhingra\/#author"},"creator":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/anshika-dhingra\/#author"},"datePublished":"2015-05-27T14:41:30+05:30","dateModified":"2015-06-26T10:44:57+05:30"},{"@type":"WebSite","@id":"https:\/\/2thenew.xyz\/blog\/#website","url":"https:\/\/2thenew.xyz\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/2thenew.xyz\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"Moderation of User Comments In AEM through Custom Workflow | TO THE NEW Blog","og:description":"TO THE NEW Digital blog on moderation of user comments through a Comment Moderation System for websites in AEM through custom workflow","og:url":"https:\/\/2thenew.xyz\/blog\/moderation-of-user-comments-in-aem-through-custom-workflow\/","og:image":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Moderation of User Comments In AEM through Custom Workflow | TO THE NEW Blog","twitter:description":"TO THE NEW Digital blog on moderation of user comments through a Comment Moderation System for websites in AEM through custom workflow","twitter:image":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"20083","title":"Moderation of User Comments In AEM through Custom Workflow | #site_title","description":"TO THE NEW Digital blog on moderation of user comments through a Comment Moderation System for websites in AEM through custom workflow","keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-29 22:17:36","updated":"2024-02-29 09:32:21","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.xyz\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.xyz\/blog\/category\/technology\/\" title=\"Technology\">Technology<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tModeration of User Comments In AEM through Custom Workflow\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.xyz\/blog"},{"label":"Technology","link":"https:\/\/2thenew.xyz\/blog\/category\/technology\/"},{"label":"Moderation of User Comments In AEM through Custom Workflow","link":"https:\/\/2thenew.xyz\/blog\/moderation-of-user-comments-in-aem-through-custom-workflow\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/20083","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/users\/198"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/comments?post=20083"}],"version-history":[{"count":0,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/20083\/revisions"}],"wp:attachment":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/media?parent=20083"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/categories?post=20083"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/tags?post=20083"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}