Forums
Forums / Plugin: Bogo / Language Selection Page
(@philiprabbett)
8 years, 2 months ago
With Bogo, is it possible to create a language selection page (like a landing page) to let users choose the site language.
For example example.test –> language selection page example.test/en –> English site example.test/de –> Dutch site
(@boombalaya)
7 years, 12 months ago
Hello Philip. This should get you started, Create a front-page.php file in your theme and include the following php code:
<?php $langs = bogo_language_switcher_links(); echo '<ul class="language-list">'; foreach ($langs as $lang): ?> <li><a href="<?= $lang["href"]?>"><?= $lang["native_name"] ?></a></li> <?php endforeach; echo '</ul>'; ?>
The topic ‘Language Selection Page’ is closed to new replies.