This must be an easy one but I cannot figure it out.
Today my title looks like this:
<title>XHTML | CSS | Web design | Photography | Jens Wedin - Strange DNS issue</title>
First comes the name of the blog then the article name. I would now like to change the order to:
<title>Strange DNS issue - XHTML | CSS | Web design | Photography | Jens Wedin</title>
The problem seems to be the <?php wp_title(' - '); ?>. The line (-) always goes after and not in front of the title. If I just write:
<?php wp_title(' - '); ?><?php bloginfo('name'); ?>
The line (-) comes before, and I want between the title and name. If I add a static line it show up on the start page and that is not what I want.
Any suggestions?