You need to edit your theme’s header.php template file – specifically the <title></title> code block.
it looks like this in the header.php
<title><?php wp_title( ‘|’, true, ‘right’ ); ?> </title>
That’s correct. Try deactivating the All in One SEO plugin and see if that helps.
that was the problem… All in One SEO… but why? it never happend before
Because you may have changed the meta titles via the plugin.
problem number 2:
now it stand:
Personalkontakten | Rekrytering, Personal, Personalrekrytering när den är som bäst
i wanna have:
Rekrytering, Personal, Personalrekrytering när den är som bäst | Personalkontakten
Where? On what page? Right now, the theme is displaying exactly what it should display – the post name followed by your site’s name.
at the start page.
i wanna have the sitenamn at the end of the title. This rpoblem i just on the startpage.
i wanna have the sitenamn at the end of the title
It is at the end of the title.
in the posts and pages. But not at the startpage.
it looks like this at the startpage:
<title>Personalkontakten | Rekrytering, Personal, Personalrekrytering när den är som bäst </title>
Try
<title><?php if( is_home() || is_front_page() ) {wp_title('|',true,'right'); bloginfo('name');
else <?php wp_title( '|', true, 'right' ); ?></title>
I managed to fix it with SEO-ultimate plugin