[ad_1]
Our website default language is English, but I would like a single page to load in Spanish. I have tried the following snippet to no avail:
add_action( ‘wp_head’, function () {
if ( is_page( 1056 ) ) { ?>
<script type=”text/javascript”>
if(localStorage.getItem(“ChangeLanguageFirstTime”) === null) {
doGTranslate(‘en|es’);
localStorage.setItem(“ChangeLanguageFirstTime”, true);
}
</script>
<?php }
} );
