Your sites Log in Sign up Menu

Adding day of week to date format?

Is it possible to set the date format of posts so they include the day of the week?


a year ago, 2 replies   developers   dates   Improve this question

Yes, this is possible. You'll want to first fork an editable copy of your template if you haven't already, then you'll want to open up the template editor and navigate to the source code section then change the date_display property in your template's package.json file to the format of your choice. You can refer to the list of tokens which you can use in this setting. The token dddd renders as the day of the week, so consider something like this:

"date_display": "dddd MMMM D, Y",
Answered a year ago · Improve this answer

thank you!!!

Answered a year ago · Improve this answer