Skip to content

Instantly share code, notes, and snippets.

@kovshenin
Created May 6, 2013 11:16
Show Gist options
  • Save kovshenin/5524562 to your computer and use it in GitHub Desktop.
Save kovshenin/5524562 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'locale', function( $locale ) {
if ( empty( $_COOKIE['lang'] ) )
return $locale;
elseif ( $_COOKIE['lang'] == 'ru' )
$locale = 'ru_RU';
elseif ( $_COOKIE['lang'] == 'ja' )
$locale = 'ja_JA';
return $locale;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment