Created
January 21, 2013 14:33
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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