Skip to content

Instantly share code, notes, and snippets.

@vielhuber
Created December 29, 2017 21:16
Show Gist options
  • Save vielhuber/758904958aa559f62162df2e497fb856 to your computer and use it in GitHub Desktop.
Save vielhuber/758904958aa559f62162df2e497fb856 to your computer and use it in GitHub Desktop.
#wordpress polylang disable language in frontend
<?php
if( !is_admin() && $pagenow != 'wp-login.php' && pll_current_language() == 'en' )
{
wp_redirect(site_url().'/de/');
die();
}
@GwynethLlewelyn
Copy link

@PatH007 not really 😁 PHP is a quirky language. Whatever is not in a function, is the 'main' code, even if it's spread across different files. I know it's weird, but that's how PHP works.

You could encapsulate it all in a function (more specifically, a procedure), if you really wanted to; but you would still have to call it afterwards, e.g.

function myProcedure() {
    // put all you wish to do in here
    return;
}

myProcedure();

which, indeed, seems a bit overkill (function calls use up extra memory & resources, too!)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment