functions dosyasına bu kodu ekleyin , zira bu kod ingilizce siteye root domaininden yönlendirecektir , diğer dil için kopyaa yapıştır yapın bu kodu .
add_action( 'init', 'custom_lang_found' );
function custom_lang_found(){ $lang = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2); if ($lang == "en" ){ if (($_SERVER['REQUEST_URI'] == "/" ) && (strpos($_SERVER['HTTP_REFERER'],get_home_url()) === false)) { $url = get_home_url()."/en/"; if ( wp_redirect( $url ) ) { exit; } } } }