Easy! I've got this. In training they showed us that you first go to an index page or the page with multiple posts.
First method is to find the post and click the right mouse button on the "1 day ago" text and choose inspect or inspect element... from that source that pops up you'll see datetime="2022-10-16T22:35:47Z". That's your date in GMT time.
On that same page you can use the developer tools, drop down to the console and type: $("time.timeago) and an array of all timestamps for the posts on the page. Similar formatting, but it shows you all of the dates at once.
Easy! I've got this. In training they showed us that you first go to an index page or the page with multiple posts.
First method is to find the post and click the right mouse button on the "1 day ago" text and choose inspect or inspect element... from that source that pops up you'll see datetime="2022-10-16T22:35:47Z". That's your date in GMT time.
On that same page you can use the developer tools, drop down to the console and type: $("time.timeago) and an array of all timestamps for the posts on the page. Similar formatting, but it shows you all of the dates at once.
The source code is all out there. https://communities.win/js/time ago.js