If you have WordPress wp_title() returning empty/blank content on index page you can try to modify your theme with the following code for the title:
<title><?php is_front_page() ? bloginfo('name') : wp_title(''); ?></title>
It will use the blog name as title for the front page.
Comments
Post a Comment