Skip to content

Instantly share code, notes, and snippets.

@fjarrett
Last active February 19, 2016 17:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fjarrett/144913204152a658f254 to your computer and use it in GitHub Desktop.
Save fjarrett/144913204152a658f254 to your computer and use it in GitHub Desktop.
Always use English in the WP Admin
<?php
add_action( 'plugins_loaded', function() {
add_filter( 'locale', function( $locale ) {
return is_admin() ? 'en_US' : $locale;
} );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment