Timestamps
Learn about how to add change the timestamp format for all feeds
1.0. Custom Timestamps
By default your feed timestamps will display in a format like this: October 09, 2025. But you can easily adjust this format to something more suitable for your project.
To change the format of the timestamp, simply add a new attribute to your timestamp element.
Add the additional attribute name="feed-timestamp"
andvalue="DD.MM.YYYY"
The follow table provides some examples of formats that you might want to add to your project.
Attribute Name | Attribute Value | Format |
---|---|---|
feed-timestamp | from-now | 16 days ago |
feed-timestamp | DD.MM.YYYY | 09.10.2025 |
feed-timestamp | MM.DD.YYYY | 10.09.2025 |
feed-timestamp | YYYY-MM-DD | 2025-10-09 |
feed-timestamp | DD/MM/YYYY | 09/10/2025 |
feed-timestamp | DD MMMM, YYYY | 25 December, 2025 |
Last updated