Skip to content

Instantly share code, notes, and snippets.

@ronalfy
Created January 21, 2013 14:33
Show Gist options
  • Save ronalfy/4586478 to your computer and use it in GitHub Desktop.
Save ronalfy/4586478 to your computer and use it in GitHub Desktop.
Having trouble getting a language to set across a network? Try running this as a mu-plugin.
<?php
//For setting the multisite language
function sp_modify_locale(){
return 'ja_JP'; //change this
}
add_filter('locale','sp_modify_locale');
add_filter( 'bbpress_locale', 'sp_modify_locale' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment