Skip to content

Instantly share code, notes, and snippets.

@boluda
Created March 11, 2016 14:23
Show Gist options
  • Save boluda/794a0033fabac02a1ff9 to your computer and use it in GitHub Desktop.
Save boluda/794a0033fabac02a1ff9 to your computer and use it in GitHub Desktop.
add_filter('locale', 'jb_setLocale');
function jb_setLocale($locale) {
if ( is_admin() ) {
return 'en_US';
}
return $locale;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment