Hi Icethrill
it’s too big for my need, I just want to have the admin panel in english if in example I installed my wordpress in spanish…
I’m just looking for a simple function (which works) like
function set_admin_language(){
if(is_admin()){
$locale = 'en_US';
apply_filters( 'locale', $locale );
}
}
add_action('init', 'set_admin_language');