Formatting a custom date field?
Hello,
I have a custom date field that looks like this: update: 2015-05-12
. I've seen there are ways to format dates for built-in fields. Is there a way to do so for custom fields?
Alex
No, there are no general purpose date parsing and display functions, only those for displaying the post's publish date, date updated, date created, etc. I would recommend either typing in the custom metadata exactly as you want the date to display, or loading in the date with javascript in your template's script.js file and formatting it there.
If you tell me a little more about what you're trying to achieve, I'd be happy to help work out a way
Answered 9 days ago · Edit answerI wasn't trying to be obscure. I have an update
field that has a date in ISO (say, 2015-05-12
and I want it to output like this: 12 May 2025
.
I added the following to script.js
which does the trick:
// Convert the "#update-metadata" field, if it exists, to a prettier format
const updateMetadata = document.getElementById('update-metadata');
const date = new Date(updateMetadata.textContent.trim());
updateMetadata.textContent = `${date.getDate()} ${date.toLocaleString('en-US', {month: 'long'})} ${date.getFullYear()}`;
Alex
Answered 9 days ago · Edit answerIf you just want to display the date the file was updated, you can do this:
{{#formatUpdated}}MMMM Do, YYYY{{/formatUpdated}}
Answered 9 days ago ·
Edit answer
Thank you, I saw that. Unfortunately, I want a specific date, included through custom metadata, that indicates the date when a post was substantially edited (if it was), and not when the file was edited for other reasons, such as adapting it for Blot.
Alex
Answered 8 days ago · Edit answer(I posted this in the wrong thread, so I removed it and copied it over just now. Sorry! –Alex)
Answered 6 days ago · Edit answer
Newsletter
Get updates on Blot’s latest features and changes. Delivered every three months.