wordpress sitesinde dil seçeneği hakkında
3
●52
- 27-07-2022, 14:13:43functions 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; } } } } - 27-07-2022, 14:25:11Merhaba sitenize WPML kurup bu olayı halledebiliriz
Konum: https://www.r10.net/wordpress-tema-e...a-fazlasi.html
