Automatic DateTime Stamping of a Blog

Simply add a small JavaScript function to the Website > HTML Code (body): <script> document.querySelectorAll('.dateTime > span')[0].innerText = new Date(document.lastModified).toUTCString(); </script> Create a Text Area with “ddd, dd mmm yyyy hh:mm:ss” GMT”. Make it: Sticky Add it to the first page Headerer You can experiment with toUTCString() to match to your required DateTime format. Removing the code allows the Text Area to be manually set