{"id":4363,"date":"2024-08-28T12:55:30","date_gmt":"2024-08-28T12:55:30","guid":{"rendered":"https:\/\/www.systools.in\/blog\/?p=4363"},"modified":"2024-08-28T12:55:30","modified_gmt":"2024-08-28T12:55:30","slug":"how-to-set-time-zone-in-sharepoint","status":"publish","type":"post","link":"https:\/\/www.systools.in\/blog\/how-to-set-time-zone-in-sharepoint\/","title":{"rendered":"How to Set the Time Zone in SharePoint for All Sites? From A to Z Guide"},"content":{"rendered":"<p style=\"text-align: justify\">Managing the sites and subsites is not enough for a smooth workflow in SharePoint, setting up the correct time zone is also crucial. Configuration of the correct time zone helps to monitor the actions based on their occurred time. So, in this article, you will find out how to set the time zone in SharePoint Online for all sites. But before delving into the steps to achieve the same. Let\u2019s take a look at the different pros of setting up time zones.<\/p>\n<div class=\"alert alert-warning\">\n<p><strong>Table of Content<\/strong><\/p>\n<ul>\n<li><a href=\"#1\"><strong>Benefits of Time Zone in SharePoint Online<\/strong><\/a><\/li>\n<li><a href=\"#2\"><strong>Introduction to Default Time Zone<\/strong><\/a><\/li>\n<li><a href=\"#3\"><strong>Impact of Time Zone<\/strong><\/a><\/li>\n<li><a href=\"#4\"><strong>Set Time Zone Using Profile Settings<\/strong><\/a><\/li>\n<li><a href=\"#5\"><strong>Change Time Zone for All Sites<\/strong><\/a><\/li>\n<li><a href=\"#6\"><strong>Use PowerShell Commands to Modify Time Zone<\/strong><\/a><\/li>\n<li><a href=\"#7\"><strong>Is Time Zone Matters in Migration?<\/strong><\/a><\/li>\n<li><a href=\"#8\"><strong>Conclusion<\/strong><\/a><\/li>\n<\/ul>\n<\/div>\n<h2 id=\"1\">Importance of Configuring Time Zone in SharePoint Online<\/h2>\n<p>Here are some key benefits of configuring the time zone in SharePoint sites.<\/p>\n<ul>\n<li>Correct time zone ensures the accuracy of tracking the actions or modifications in SharePoint.<\/li>\n<li>To get the correct alerts from the calendar, setting up the time zone is crucial as per the location of the users.<\/li>\n<li>SharePoint manages some of the workflows based on the time-triggers. So, an incorrect time zone can create delayed execution of the workflows.<\/li>\n<\/ul>\n<h2 id=\"2\">What is the Default Time Zone in SharePoint?<\/h2>\n<p style=\"text-align: justify\">SharePoint uses the US Pacific Standard Time or UTC\/GMT-8 as a default time zone. It is because of the location of Microsoft\u2019s headquarters which is in Redmond United States. So, users who belong to that time zone do not need to set it up but the rest need to be configured it.<\/p>\n<h3 id=\"3\">Impact of Time Zone on SharePoint Sites<\/h3>\n<p style=\"text-align: justify\">Misconfiguration of time zone settings affects the date\/time showing for data type columns such as created, modified, etc. The users who own the Microsoft 365 license can adjust their time zone by the account settings.<\/p>\n<p style=\"text-align: justify\">On the other hand, users who do not have Microsoft 365 licenses or external users, are not able to set the time zone in their profile settings.<\/p>\n<p style=\"text-align: justify\">So, let\u2019s start discussing the methods for successful time zone configurations for both cases.<\/p>\n<h3 id=\"4\">Method 1. How to Set the Time Zone in SharePoint Using Profile Settings?<\/h3>\n<p>You can go with the below steps for modifying the time zone if the users have an Office 365 license.<\/p>\n<ul>\n<li><strong>Step 1.<\/strong> Open the SharePoint.<\/li>\n<li><strong>Step 2.<\/strong> Move to your profile and hit View account.<\/li>\n<li><strong>Step 3.<\/strong> Click on Settings &amp; Privacy and then choose the Time Zone option under Region.<\/li>\n<li><strong>Step 4.<\/strong> Now, press the Change Time Zone button.<\/li>\n<li><strong>Step 5.<\/strong> Pick the time zone that you want to add and hit Select.<\/li>\n<\/ul>\n<h3 id=\"5\">Method 2. Steps to Configure the Time Zone for All SharePoint Sites<\/h3>\n<p style=\"text-align: justify\">Execute the below steps to set the time zone in SharePoint for sites irrespective of licensed or external users.<\/p>\n<ul>\n<li><strong>Step 1.<\/strong> Open the Microsoft 365 App Launcher.<\/li>\n<li><strong>Step 2.<\/strong> Now hit on Admin Centers and then SharePoint Admin Center.<\/li>\n<li><strong>Step 3.<\/strong> Go to Settings and hit the Site creation option.<\/li>\n<li><strong>Step 4.<\/strong> Choose your time zone from the Default time zone drop-down.<\/li>\n<li><strong>Step 5.<\/strong> Finally, hit on the Save option to apply the changes.<\/li>\n<\/ul>\n<h3 id=\"6\">Method 3. How to Change the Time Zone in SharePoint Online Using PowerShell?<\/h3>\n<p style=\"text-align: justify\">Below are the commands that you can execute if you are good at PowerShell commands and SharePoint technicalities. Otherwise, opt for the above methods.<\/p>\n<pre>Add-Type -Path \"C:\\Program Files\\Common Files\\Microsoft Shared\\Web Server Extensions\\16\\ISAPI\\Microsoft.SharePoint.Client.dll\"\r\nAdd-Type -Path \"C:\\Program Files\\Common Files\\Microsoft Shared\\Web Server Extensions\\16\\ISAPI\\Microsoft.SharePoint.Client.Runtime.dll\"\r\n\r\n$URLofYourSite = \"enter here\"\r\n$NameofTimeZone =\"(UTC+04:00) Abu Dhabi, Muscat\"\r\n\r\n$Details= Get-Credential\r\n$Credentials = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($Details.Username, $Details.Password)\r\n\r\n$Cotx = New-Object Microsoft.SharePoint.Client.ClientContext($URLofYourSite)\r\n$Cotx.Credentials = $credentials\r\n\r\n$Timezones = $Cotx.Web.RegionalSettings.TimeZones\r\n$Cotx.Load($Timezones)\r\n$Cotx.ExecuteQuery()\r\n\r\n$NewTimeZone = $Timezones | Where {$_.Description -eq $NameofTimeZone}\r\n\r\n$Cotx.Web.RegionalSettings.TimeZone = $NewTimeZone\r\n$Cotx.Web.Update()\r\n$Cotx.ExecuteQuery()<\/pre>\n<h4 id=\"7\">Is Time Zone Matters During Migration &#8211; Take a Look<\/h4>\n<p style=\"text-align: justify\">If you need to perform migration due to any reason such as an organization&#8217;s merger or rebranding. Then you can use the <a href=\"https:\/\/www.systools.in\/products\/sharepoint-to-sharepoint\/\" target=\"_blank\" rel=\"noopener\"><strong>Efficient SharePoint Migration Tool<\/strong><\/a>.<\/p>\n<p class=\"text-center mr-2\"><a class=\"btn btn-lg btn-md-block text-white\" style=\"background: #28a745;color: #fff !important\" href=\"https:\/\/systoolskart.com\/download\/SYS1S6P6O\/29\" rel=\"nofollow\"> Download Now<\/a> <a class=\"btn btn-lg btn-md-block text-white\" style=\"background: #ff6800;color: #fff !important\" href=\"https:\/\/systoolskart.com\/buy\/SYS1S6P6O\/29\" target=\"_blank\" rel=\"noopener noreferrer nofollow\">Purchase Now<\/a><\/p>\n<p style=\"text-align: justify\">By using this tool, you can perform <a href=\"https:\/\/www.systools.in\/blog\/sharepoint-tenant-to-tenant-migration\/\" target=\"_blank\" rel=\"noopener\"><strong>SharePoint tenant to tenant migration<\/strong><\/a>. You do not need to know how to change the time zone in SharePoint Online while using this tool, because it does not consider it while migration. Additionally, this tool does not require any technical knowledge, therefore a non-tech user can also operate this tool.<\/p>\n<h4 id=\"8\">Concluded Words<\/h4>\n<p style=\"text-align: justify\">In this detailed write-up, we have elaborated on the multiple methods to set the time zone in SharePoint Online. Now, you can easily change the time zone in SharePoint to maintain a seamless workflow. We have also suggested a prominent tool for migration without considering time zones.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Managing the sites and subsites is not enough for a smooth workflow in SharePoint, setting up the correct time zone is also crucial. Configuration of the correct time zone helps <\/p>\n","protected":false},"author":6,"featured_media":4369,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[360],"class_list":["post-4363","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-sharepoint-online"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Set the Time Zone in SharePoint for All Sites? Explored<\/title>\n<meta name=\"description\" content=\"How to set the time zone in SharePoint for all sites? Let&#039;s find the steps of Admin Center &amp; PowerShell to set and change time zone in SharePoint Online.\" \/>\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.systools.in\/blog\/how-to-set-time-zone-in-sharepoint\/\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Raj Kumar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/how-to-set-time-zone-in-sharepoint\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/how-to-set-time-zone-in-sharepoint\\\/\"},\"author\":{\"name\":\"Raj Kumar\",\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/#\\\/schema\\\/person\\\/38995c504e8e559d45dd2c8b2bba176b\"},\"headline\":\"How to Set the Time Zone in SharePoint for All Sites? From A to Z Guide\",\"datePublished\":\"2024-08-28T12:55:30+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/how-to-set-time-zone-in-sharepoint\\\/\"},\"wordCount\":710,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/how-to-set-time-zone-in-sharepoint\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/how-to-set-the-time-zone-in-SharePoint.webp\",\"articleSection\":[\"SharePoint Online\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.systools.in\\\/blog\\\/how-to-set-time-zone-in-sharepoint\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/how-to-set-time-zone-in-sharepoint\\\/\",\"url\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/how-to-set-time-zone-in-sharepoint\\\/\",\"name\":\"How to Set the Time Zone in SharePoint for All Sites? Explored\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/how-to-set-time-zone-in-sharepoint\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/how-to-set-time-zone-in-sharepoint\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/how-to-set-the-time-zone-in-SharePoint.webp\",\"datePublished\":\"2024-08-28T12:55:30+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/#\\\/schema\\\/person\\\/38995c504e8e559d45dd2c8b2bba176b\"},\"description\":\"How to set the time zone in SharePoint for all sites? Let's find the steps of Admin Center & PowerShell to set and change time zone in SharePoint Online.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/how-to-set-time-zone-in-sharepoint\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.systools.in\\\/blog\\\/how-to-set-time-zone-in-sharepoint\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/how-to-set-time-zone-in-sharepoint\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/how-to-set-the-time-zone-in-SharePoint.webp\",\"contentUrl\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/how-to-set-the-time-zone-in-SharePoint.webp\",\"width\":1280,\"height\":720,\"caption\":\"how to set the time zone in SharePoint\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/how-to-set-time-zone-in-sharepoint\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Set the Time Zone in SharePoint for All Sites? From A to Z Guide\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/\",\"name\":\"Informative Blogs Related To Technologies &amp; Data Recovery Solutions\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/#\\\/schema\\\/person\\\/38995c504e8e559d45dd2c8b2bba176b\",\"name\":\"Raj Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/39e1c57ad79e81fd7edc787ba298cbd8e96458e624c52e7a35bac32d1b3063f0?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/39e1c57ad79e81fd7edc787ba298cbd8e96458e624c52e7a35bac32d1b3063f0?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/39e1c57ad79e81fd7edc787ba298cbd8e96458e624c52e7a35bac32d1b3063f0?s=96&d=mm&r=g\",\"caption\":\"Raj Kumar\"},\"description\":\"A dynamic writer with extensive knowledge of technology aids in closing the gap between the user and technology. Provides simple and dependable solutions to a variety of technical challenges that customers face on a daily basis.\",\"url\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/author\\\/raj\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Set the Time Zone in SharePoint for All Sites? Explored","description":"How to set the time zone in SharePoint for all sites? Let's find the steps of Admin Center & PowerShell to set and change time zone in SharePoint Online.","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.systools.in\/blog\/how-to-set-time-zone-in-sharepoint\/","twitter_misc":{"Written by":"Raj Kumar","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.systools.in\/blog\/how-to-set-time-zone-in-sharepoint\/#article","isPartOf":{"@id":"https:\/\/www.systools.in\/blog\/how-to-set-time-zone-in-sharepoint\/"},"author":{"name":"Raj Kumar","@id":"https:\/\/www.systools.in\/blog\/#\/schema\/person\/38995c504e8e559d45dd2c8b2bba176b"},"headline":"How to Set the Time Zone in SharePoint for All Sites? From A to Z Guide","datePublished":"2024-08-28T12:55:30+00:00","mainEntityOfPage":{"@id":"https:\/\/www.systools.in\/blog\/how-to-set-time-zone-in-sharepoint\/"},"wordCount":710,"commentCount":0,"image":{"@id":"https:\/\/www.systools.in\/blog\/how-to-set-time-zone-in-sharepoint\/#primaryimage"},"thumbnailUrl":"https:\/\/www.systools.in\/blog\/wp-content\/uploads\/2024\/08\/how-to-set-the-time-zone-in-SharePoint.webp","articleSection":["SharePoint Online"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.systools.in\/blog\/how-to-set-time-zone-in-sharepoint\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.systools.in\/blog\/how-to-set-time-zone-in-sharepoint\/","url":"https:\/\/www.systools.in\/blog\/how-to-set-time-zone-in-sharepoint\/","name":"How to Set the Time Zone in SharePoint for All Sites? Explored","isPartOf":{"@id":"https:\/\/www.systools.in\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.systools.in\/blog\/how-to-set-time-zone-in-sharepoint\/#primaryimage"},"image":{"@id":"https:\/\/www.systools.in\/blog\/how-to-set-time-zone-in-sharepoint\/#primaryimage"},"thumbnailUrl":"https:\/\/www.systools.in\/blog\/wp-content\/uploads\/2024\/08\/how-to-set-the-time-zone-in-SharePoint.webp","datePublished":"2024-08-28T12:55:30+00:00","author":{"@id":"https:\/\/www.systools.in\/blog\/#\/schema\/person\/38995c504e8e559d45dd2c8b2bba176b"},"description":"How to set the time zone in SharePoint for all sites? Let's find the steps of Admin Center & PowerShell to set and change time zone in SharePoint Online.","breadcrumb":{"@id":"https:\/\/www.systools.in\/blog\/how-to-set-time-zone-in-sharepoint\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.systools.in\/blog\/how-to-set-time-zone-in-sharepoint\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systools.in\/blog\/how-to-set-time-zone-in-sharepoint\/#primaryimage","url":"https:\/\/www.systools.in\/blog\/wp-content\/uploads\/2024\/08\/how-to-set-the-time-zone-in-SharePoint.webp","contentUrl":"https:\/\/www.systools.in\/blog\/wp-content\/uploads\/2024\/08\/how-to-set-the-time-zone-in-SharePoint.webp","width":1280,"height":720,"caption":"how to set the time zone in SharePoint"},{"@type":"BreadcrumbList","@id":"https:\/\/www.systools.in\/blog\/how-to-set-time-zone-in-sharepoint\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.systools.in\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Set the Time Zone in SharePoint for All Sites? From A to Z Guide"}]},{"@type":"WebSite","@id":"https:\/\/www.systools.in\/blog\/#website","url":"https:\/\/www.systools.in\/blog\/","name":"Informative Blogs Related To Technologies &amp; Data Recovery Solutions","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.systools.in\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.systools.in\/blog\/#\/schema\/person\/38995c504e8e559d45dd2c8b2bba176b","name":"Raj Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/39e1c57ad79e81fd7edc787ba298cbd8e96458e624c52e7a35bac32d1b3063f0?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/39e1c57ad79e81fd7edc787ba298cbd8e96458e624c52e7a35bac32d1b3063f0?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/39e1c57ad79e81fd7edc787ba298cbd8e96458e624c52e7a35bac32d1b3063f0?s=96&d=mm&r=g","caption":"Raj Kumar"},"description":"A dynamic writer with extensive knowledge of technology aids in closing the gap between the user and technology. Provides simple and dependable solutions to a variety of technical challenges that customers face on a daily basis.","url":"https:\/\/www.systools.in\/blog\/author\/raj\/"}]}},"_links":{"self":[{"href":"https:\/\/www.systools.in\/blog\/wp-json\/wp\/v2\/posts\/4363","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.systools.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.systools.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.systools.in\/blog\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/www.systools.in\/blog\/wp-json\/wp\/v2\/comments?post=4363"}],"version-history":[{"count":0,"href":"https:\/\/www.systools.in\/blog\/wp-json\/wp\/v2\/posts\/4363\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.systools.in\/blog\/wp-json\/wp\/v2\/media\/4369"}],"wp:attachment":[{"href":"https:\/\/www.systools.in\/blog\/wp-json\/wp\/v2\/media?parent=4363"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.systools.in\/blog\/wp-json\/wp\/v2\/categories?post=4363"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}