function myprefix_live_site_locale( $locale ) {
if ( ! is_admin() ) {
return 'ru_RU'; // make front-end Russian
}
return $locale;
}
add_filter( 'locale', 'myprefix_live_site_locale' );
Snippets: Change Front-End Site Language Without Changing Admin Language
All PHP snippets should be added via a child theme's functions.php file or via the Code Snippets Plugin (or alternative plugin)