Saat membuat website dengan wordpress, saya pernah mengalami “judul situs” tidak muncul di tab browser. Alih-alih judul situs yang muncul malah url situs. Lalu googling deh cari-cari solusi.
Caranya dengan edit Theme Header (header.php). Buka lewat menu Appearance>editor…
lalu ganti
<title><?php wp_title(); ?></title>
atau di wordpress yang lebih update biasanya
<title><?php wp_title( '|', true, 'right' ); ?></title>
dengan:
<title><?php bloginfo('name'); ?> | <?php is_front_page() ? bloginfo('description') : wp_title(''); ?></title>
Trus, bisa deh. Judul situsnya muncul lagi di tab browser.
Sumber: hasil googling di forum wordpress