When the Multilingual Mode is enabled, Hugo generate a RSS feed for each subsite.
Is it possible to have a global RSS feed that include all new articles of all languages?
You can use .Site.AllPages
in your RSS template, which returns βan array of all pages, regardless of their translation.β See here.
1 Like
Thanks! That is certainly helpful. In addition to .Site.AllPages
, we also need to use .IsPage
to filter out tag pages, etc.