Herhangi bir seo eklentisi kullanmıyorum.

Function.php kodu
/*-----------------------------------------------------------------------------------*/
/* Filters customize wp_title
/*-----------------------------------------------------------------------------------*/
if ( ! function_exists('mythemeshop_page_title' ) ) {
function mythemeshop_page_title( $title ) {
$the_page_title = $title;
if( ! $the_page_title ){
$the_page_title = get_bloginfo("name");
}else{
$the_page_title = $the_page_title;
}
return $the_page_title;
}
add_filter('wp_title', 'mythemeshop_page_title');
}


Header.php dede şu kod mevcut
<?php wp_title(''); ?>
ne yapabilirim bu konuda bana yardımcı olurmusunuz.