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
Some sitemap generators set priorities based on how deeply nested pages are. Could this be of use for Hyde?
The text was updated successfully, but these errors were encountered:
Trying out the following:
$priority = 0.5; if (in_array($pageClass, [BladePage::class, MarkdownPage::class])) { $priority = 0.9; if ($slug === 'index') { $priority = 1; } if ($slug === '404') { $priority = 0.5; } } if ($pageClass === DocumentationPage::class) { $priority = 0.9; } if ($pageClass === MarkdownPost::class) { $priority = 0.75; } return (string) $priority;
Sorry, something went wrong.
Merge pull request #437 from hydephp/add-dynamic-page-priorities-for-…
b6d83ec
…sitemap Fix #429: Add page priorities to sitemap generation
Merge pull request #429 from hydephp/organize-and-restructure-code
4f4e75e
Refactor HydeKernel code to organized single-used traits hydephp/develop@9f91a20
caendesilva
Successfully merging a pull request may close this issue.
Some sitemap generators set priorities based on how deeply nested pages are. Could this be of use for Hyde?
The text was updated successfully, but these errors were encountered: