X

Different Admin and Theme Languages

Snippets by IsItWP

You can choose different admin and theme languages. By default, there’s only 1 language and it’s defined in the WordPress configuration files.

Instructions: Add the following code to the functions.php file of your WordPress theme.
Don’t define WPLANG in your wp-config.php file to put this code in action.

<?php
// setup one language for admin and the other for theme
// must be called before load_theme_textdomain()
function set_my_locale($locale) {
	
	$locale = ( is_admin() ) ? "en_US" : "it_IT";
	setlocale(LC_ALL, $local );
	return $locale;

}
add_filter( 'locale', 'set_my_locale' );
?>

You may also enjoy removing date filter on post type admin pages.

Comments   Leave a Reply

Add a Comment

We're glad you have chosen to leave a comment. Please keep in mind that all comments are moderated according to our privacy policy, and all links are nofollow. Do NOT use keywords in the name field. Let's have a personal and meaningful conversation.

WordPress Launch Checklist

The Ultimate WordPress Launch Checklist

We've compiled all the essential checklist items for your next WordPress website launch into one handy ebook.
Yes, Send Me the Free eBook!