{"id":29567,"date":"2015-11-09T11:12:28","date_gmt":"2015-11-09T05:42:28","guid":{"rendered":"http:\/\/www.tothenew.com\/blog\/?p=29567"},"modified":"2015-11-09T11:12:28","modified_gmt":"2015-11-09T05:42:28","slug":"i18n-implementation-using-sightly","status":"publish","type":"post","link":"https:\/\/www.tothenew.com\/blog\/i18n-implementation-using-sightly\/","title":{"rendered":"i18n  implementation using Sightly"},"content":{"rendered":"<p>Internationalization (i18n)\u00a0is the process of generalizing a product so that it can handle multiple languages and cultural conventions without the need for re-design\u00a0.<\/p>\n<p><strong>a. Structure format required for i18n implementation :<\/strong><\/p>\n<p style=\"text-align: left\"><em>1) Create a i18n node of type sling:Folder as below<\/em><\/p>\n<p style=\"text-align: justify\"><strong><em><span style=\"text-decoration: underline\"><span style=\"color: #993300\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-29686\" src=\"\/blog\/wp-ttn-blog\/uploads\/2015\/11\/i18n-properties.jpg\" alt=\"i18n properties\" width=\"980\" height=\"167\" \/><\/span><\/span><\/em><\/strong><\/p>\n<p><em>2) Create a node of type sling:Folder under i18n of mixin type mix:language and add a property called jcr:language and assign value of lang code \u00a0as below<\/em><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-29687\" src=\"\/blog\/wp-ttn-blog\/uploads\/2015\/11\/i18n-folder-properties.jpg\" alt=\"i18n-folder properties\" width=\"980\" height=\"169\" \/><\/p>\n<p><em>3) Create a message node of type\u00a0sling:MessageEntry and a property called sling:key which will used to pull the value of the variable and also add a property called sling:message which will specify the value of the key as below<\/em><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-29688\" src=\"\/blog\/wp-ttn-blog\/uploads\/2015\/11\/i18n-message-properties.jpg\" alt=\"i18n-message properties\" width=\"972\" height=\"164\" \/><\/p>\n<p>As soon as you create this structure you can look in CQ5-Translator and you\u00a0should have similar translations created :<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-29768\" src=\"\/blog\/wp-ttn-blog\/uploads\/2015\/11\/i18n-translator.jpg\" alt=\"i18n-translator\" width=\"1001\" height=\"163\" \/><\/p>\n<p><strong>b. Normal way to implement i18n in Sightly :\u00a0<\/strong><\/p>\n<p><em>We can implement i18n directly by using the below syntax :<\/em><\/p>\n<pre>${'key' @ i18n}\r\n${'key' @ i18n, source='user', hint='Translation Hint'}\r\n${'key' @ i18n, locale='en', hint='Translation Hint'}<\/pre>\n<p>The default <strong>source<\/strong> for the language is &#8216;resource&#8217;, meaning that the text gets translated to the same language as the content. If you specify it to\u00a0&#8216;user&#8217; than the language is taken from the browser locale or from the locale of the logged-in user.But when we provide an explicit <strong>locale<\/strong> than we overrides the source settings and would take the specified locale.<\/p>\n<p>In Sightly if we don&#8217;t define the attribute locale than it would automatically convert the text\u00a0according to\u00a0current page locale .<\/p>\n<p>The <strong>hint<\/strong>\u00a0is used to provide\u00a0information about the context for the translators.<\/p>\n<p><strong>Issue and it&#8217;s alternative approach :<\/strong><\/p>\n<p>When I tried using the above approach for i18n implementation in sightly, it\u00a0didn&#8217;t worked in a usual manner for different locale as it should work on.<\/p>\n<p><strong>Solution :\u00a0<\/strong>So if such a scenario happened with you, you can also achieve it by creating a <strong>local template<\/strong>\u00a0to which you can pass the variable identifying your key and\u00a0than calling it by using \u00a0data-sly-call :<\/p>\n<p>Implementation for the same is as below :<\/p>\n<pre><em>&lt;template data-sly-template.i18=\"${@ key}\"&gt;\r\n ${key @ i18n}\r\n&lt;\/template&gt;\r\n\r\n&lt;div data-sly-call=\"${i18 @ key='key-name'}\"&gt;&lt;\/div&gt;\r\n<\/em><\/pre>\n<p>This approach holds\u00a0good and worked for me in all use cases .<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Internationalization (i18n)\u00a0is the process of generalizing a product so that it can handle multiple languages and cultural conventions without the need for re-design\u00a0. a. Structure format required for i18n implementation : 1) Create a i18n node of type sling:Folder as below 2) Create a node of type sling:Folder under i18n of mixin type mix:language and [&hellip;]<\/p>\n","protected":false},"author":723,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":216,"footnotes":""},"categories":[1],"tags":[1235,492,2727],"class_list":["post-29567","post","type-post","status-publish","format-standard","hentry","category-technology","tag-adobe-cq5","tag-i18n","tag-sightly"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Internationalization (i18n) is the process of generalizing a product so that it can handle multiple languages and cultural conventions without the need for re-design . a. Structure format required for i18n implementation : 1) Create a i18n node of type sling:Folder as below 2) Create a node of type sling:Folder under i18n of mixin type mix:language and\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Arpit Gupta\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.tothenew.com\/blog\/i18n-implementation-using-sightly\/\" \/>\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=\"i18n implementation using Sightly | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"Internationalization (i18n) is the process of generalizing a product so that it can handle multiple languages and cultural conventions without the need for re-design . a. Structure format required for i18n implementation : 1) Create a i18n node of type sling:Folder as below 2) Create a node of type sling:Folder under i18n of mixin type mix:language and\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.tothenew.com\/blog\/i18n-implementation-using-sightly\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/www.tothenew.com\/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=\"i18n implementation using Sightly | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Internationalization (i18n) is the process of generalizing a product so that it can handle multiple languages and cultural conventions without the need for re-design . a. Structure format required for i18n implementation : 1) Create a i18n node of type sling:Folder as below 2) Create a node of type sling:Folder under i18n of mixin type mix:language and\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/www.tothenew.com\/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\\\/i18n-implementation-using-sightly\\\/#article\",\"name\":\"i18n implementation using Sightly | TO THE NEW Blog\",\"headline\":\"i18n  implementation using Sightly\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/arpit-2\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"\\\/blog\\\/wp-ttn-blog\\\/uploads\\\/2015\\\/11\\\/i18n-properties.jpg\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/i18n-implementation-using-sightly\\\/#articleImage\"},\"datePublished\":\"2015-11-09T11:12:28+05:30\",\"dateModified\":\"2015-11-09T11:12:28+05:30\",\"inLanguage\":\"en-US\",\"commentCount\":6,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/i18n-implementation-using-sightly\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/i18n-implementation-using-sightly\\\/#webpage\"},\"articleSection\":\"Technology, Adobe cq5, i18n, Sightly\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/i18n-implementation-using-sightly\\\/#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\\\/i18n-implementation-using-sightly\\\/#listItem\",\"name\":\"i18n  implementation using Sightly\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/i18n-implementation-using-sightly\\\/#listItem\",\"position\":3,\"name\":\"i18n  implementation using Sightly\",\"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\\\/arpit-2\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/arpit-2\\\/\",\"name\":\"Arpit Gupta\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/i18n-implementation-using-sightly\\\/#authorImage\",\"url\":\"https:\\\/\\\/newersworld-sf-static.tothenew.net\\\/prod\\\/profilePicFolder\\\/8b289b4b-b0e6-4afd-88bb-6a6a3e62c9a0_2224-Arpit-Gupta-PROFILEPICTURE.jpeg\",\"width\":96,\"height\":96,\"caption\":\"Arpit Gupta\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/i18n-implementation-using-sightly\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/i18n-implementation-using-sightly\\\/\",\"name\":\"i18n implementation using Sightly | TO THE NEW Blog\",\"description\":\"Internationalization (i18n) is the process of generalizing a product so that it can handle multiple languages and cultural conventions without the need for re-design . a. Structure format required for i18n implementation : 1) Create a i18n node of type sling:Folder as below 2) Create a node of type sling:Folder under i18n of mixin type mix:language and\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/i18n-implementation-using-sightly\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/arpit-2\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/arpit-2\\\/#author\"},\"datePublished\":\"2015-11-09T11:12:28+05:30\",\"dateModified\":\"2015-11-09T11:12:28+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":"i18n implementation using Sightly | TO THE NEW Blog","description":"Internationalization (i18n) is the process of generalizing a product so that it can handle multiple languages and cultural conventions without the need for re-design . a. Structure format required for i18n implementation : 1) Create a i18n node of type sling:Folder as below 2) Create a node of type sling:Folder under i18n of mixin type mix:language and","canonical_url":"https:\/\/www.tothenew.com\/blog\/i18n-implementation-using-sightly\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.tothenew.com\/blog\/i18n-implementation-using-sightly\/#article","name":"i18n implementation using Sightly | TO THE NEW Blog","headline":"i18n  implementation using Sightly","author":{"@id":"https:\/\/www.tothenew.com\/blog\/author\/arpit-2\/#author"},"publisher":{"@id":"https:\/\/www.tothenew.com\/blog\/#organization"},"image":{"@type":"ImageObject","url":"\/blog\/wp-ttn-blog\/uploads\/2015\/11\/i18n-properties.jpg","@id":"https:\/\/www.tothenew.com\/blog\/i18n-implementation-using-sightly\/#articleImage"},"datePublished":"2015-11-09T11:12:28+05:30","dateModified":"2015-11-09T11:12:28+05:30","inLanguage":"en-US","commentCount":6,"mainEntityOfPage":{"@id":"https:\/\/www.tothenew.com\/blog\/i18n-implementation-using-sightly\/#webpage"},"isPartOf":{"@id":"https:\/\/www.tothenew.com\/blog\/i18n-implementation-using-sightly\/#webpage"},"articleSection":"Technology, Adobe cq5, i18n, Sightly"},{"@type":"BreadcrumbList","@id":"https:\/\/www.tothenew.com\/blog\/i18n-implementation-using-sightly\/#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\/i18n-implementation-using-sightly\/#listItem","name":"i18n  implementation using Sightly"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/i18n-implementation-using-sightly\/#listItem","position":3,"name":"i18n  implementation using Sightly","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\/arpit-2\/#author","url":"https:\/\/www.tothenew.com\/blog\/author\/arpit-2\/","name":"Arpit Gupta","image":{"@type":"ImageObject","@id":"https:\/\/www.tothenew.com\/blog\/i18n-implementation-using-sightly\/#authorImage","url":"https:\/\/newersworld-sf-static.tothenew.net\/prod\/profilePicFolder\/8b289b4b-b0e6-4afd-88bb-6a6a3e62c9a0_2224-Arpit-Gupta-PROFILEPICTURE.jpeg","width":96,"height":96,"caption":"Arpit Gupta"}},{"@type":"WebPage","@id":"https:\/\/www.tothenew.com\/blog\/i18n-implementation-using-sightly\/#webpage","url":"https:\/\/www.tothenew.com\/blog\/i18n-implementation-using-sightly\/","name":"i18n implementation using Sightly | TO THE NEW Blog","description":"Internationalization (i18n) is the process of generalizing a product so that it can handle multiple languages and cultural conventions without the need for re-design . a. Structure format required for i18n implementation : 1) Create a i18n node of type sling:Folder as below 2) Create a node of type sling:Folder under i18n of mixin type mix:language and","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.tothenew.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.tothenew.com\/blog\/i18n-implementation-using-sightly\/#breadcrumblist"},"author":{"@id":"https:\/\/www.tothenew.com\/blog\/author\/arpit-2\/#author"},"creator":{"@id":"https:\/\/www.tothenew.com\/blog\/author\/arpit-2\/#author"},"datePublished":"2015-11-09T11:12:28+05:30","dateModified":"2015-11-09T11:12:28+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"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"i18n implementation using Sightly | TO THE NEW Blog","og:description":"Internationalization (i18n) is the process of generalizing a product so that it can handle multiple languages and cultural conventions without the need for re-design . a. Structure format required for i18n implementation : 1) Create a i18n node of type sling:Folder as below 2) Create a node of type sling:Folder under i18n of mixin type mix:language and","og:url":"https:\/\/www.tothenew.com\/blog\/i18n-implementation-using-sightly\/","og:image":"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"i18n implementation using Sightly | TO THE NEW Blog","twitter:description":"Internationalization (i18n) is the process of generalizing a product so that it can handle multiple languages and cultural conventions without the need for re-design . a. Structure format required for i18n implementation : 1) Create a i18n node of type sling:Folder as below 2) Create a node of type sling:Folder under i18n of mixin type mix:language and","twitter:image":"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"29567","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","og_object_type":"blog","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":"","og_custom_url":null,"og_article_section":"","og_article_tags":"","twitter_use_og":false,"twitter_card":"summary","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 12:53:49","updated":"2024-02-29 08:41:23","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:\/\/www.tothenew.com\/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:\/\/www.tothenew.com\/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\ti18n  implementation using Sightly\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.tothenew.com\/blog"},{"label":"Technology","link":"https:\/\/www.tothenew.com\/blog\/category\/technology\/"},{"label":"i18n  implementation using Sightly","link":"https:\/\/www.tothenew.com\/blog\/i18n-implementation-using-sightly\/"}],"_links":{"self":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts\/29567","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/users\/723"}],"replies":[{"embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/comments?post=29567"}],"version-history":[{"count":0,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts\/29567\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/media?parent=29567"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/categories?post=29567"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/tags?post=29567"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}