froot Posted February 2, 2024 Posted February 2, 2024 what's the best way to return the user's current language specific URL segment? I mean for example /en/ or /de/ depending on the user's active language?
monollonom Posted February 3, 2024 Posted February 3, 2024 If you’re talking about the current page you could go with https://processwire.com/api/ref/wire-input/canonical-url/
froot Posted February 3, 2024 Author Posted February 3, 2024 I meant only return /de/ or /en/, is there no native method to do that?
monollonom Posted February 3, 2024 Posted February 3, 2024 Then you need to look for the home’s name in the user’s language, either $pages->get(1)->getLanguageValue($user->language, "name"); or $pages->get(1)->localName($user->language); 3
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now