Skip to main content

Hugo - tip for bringing modified articles to the surface

(This post was automatically translated with www.DeepL.com/Translator)

I sometimes modify old articles to add new information and I was looking for a simple way to make them appear on the site and the RSS feed, without modifying my theme:

All you have to do is add a lastmod attribute with the update date to the article metadata:

``yaml lastmod: “2023-08-22


Then modify the site's frontmatter conf, in the _.toml_ or _.yml_ at the root, to give this **lastmod** attribute priority over the **date** attribute:

yaml
frontmatter:
  date:
  - lastmod
  - date
[frontmatter]
  date = ['lastmod', 'date']

Some sources: