Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I've come across this issue on almost every multi-site I've built. So this is an attempt to provide an easy fix without the need for some ugly Antlers or a new tag.
I need to output some data of a specific site on the frontend. There is already a
sites
variable in the cascade. However, it uses integers as the keys, so you can't get a specific site by its handle.This is unfeasible and prone to errors as the order of the sites might change in the
config/sites.php
config:This technically works:
But getting the site by handle is much nicer:
I've tried using the
locales
tag to do what I need as well. But it has its own quirks and doesn't work reliably in every scenario. It wasn't built to simply output the data of a given site.This PR is technically a breaking change, as a user might have output a site by integer key in the template:
So it's probably safest to merge this into Statamic 5.
I'm not entirely sure why you've called
->values()
on the sites in the first place. So please enlighten me, if there was a specific reason for this.