We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When generating the sitemap XML, locales seem to be ignored.
For example I've got
<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <!-- Wiki.js sitemap generator by https://hostwiki.com --> <url> <loc>https://domain.tld/new-page</loc> <lastmod>2023-11-30T13:49:20.203Z</lastmod> </url> <url> <loc>https://domain.tld/new-page</loc> <lastmod>2023-11-30T13:49:24.491Z</lastmod> </url> </urlset>
instead of
<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <!-- Wiki.js sitemap generator by https://hostwiki.com --> <url> <loc>https://domain.tld/en/new-page</loc> <lastmod>2023-11-30T13:49:20.203Z</lastmod> </url> <url> <loc>https://domain.tld/fr/new-page</loc> <lastmod>2023-11-30T13:49:24.491Z</lastmod> </url> </urlset>
The text was updated successfully, but these errors were encountered:
Good catch. I have an incoming trip so will fix it next week. Remind me If I don’t.
Sorry, something went wrong.
Hi @Philipinho ! Thank you so much you are my hero ! Do you have any status on it ?
Fixed in 7b492ff.
Please confirm if it works well for you.
It's perfect ! Thank you so much !
No branches or pull requests
When generating the sitemap XML, locales seem to be ignored.
For example I've got
instead of
The text was updated successfully, but these errors were encountered: