Viewing 2 replies - 1 through 2 (of 2 total)
  • Moderator keesiemeijer

    (@keesiemeijer)

    Put this in your theme’s functions.php:

    function admin_in_english_locale( $locale ) {
    	if ( is_admin() || false !== strpos($_SERVER['REQUEST_URI'], '/wp-includes/js/tinymce/tiny_mce_config.php')
    		|| false !== strpos($_SERVER['REQUEST_URI'], '/wp-login.php' ) ) {
    		return 'en_US';
    	}
    	return $locale;
    }
    add_filter( 'locale', 'admin_in_english_locale' );

    or use this plugin: http://wordpress.org/extend/plugins/admin-in-english/

    The function did not work with the latest WP v3.

    The plugin seems outdated.

    🙁

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Change Interface language’ is closed to new replies.