hi!
first, big thx for the great theme. how can i change the page title in browser window (after the ”|”)? i only have “Villa Ilse | (nothing)”.
best regards
chris
hi!
first, big thx for the great theme. how can i change the page title in browser window (after the ”|”)? i only have “Villa Ilse | (nothing)”.
best regards
chris
Search for following code in header.php:
<title><?php bloginfo('name'); ?> | <?php is_home() ? bloginfo('description') : wp_title(''); ?></title>
and changed it as you like. If you want to have full control over the title I'd suggest to use plugins like http://wordpress.org/extend/plugins/wordpress-seo/ - in this case you need to replace the line with:
<title><?php wp_title(''); ?></title>You must log in to post.