Forum Moderators: open
Also, this is probably just personal preference but I would reverse your title. Seems to me that it should be: "title of the post: name of the blog". It probably doesn't matter to search engines, but I think it is better for when people bookmark your post.
in case of wordpress, it is
"title of the blog; title of the post"
.. I really don't know how to fix it.. please suggest
mayest, I use Firefox.. and do have a meta description tag for both blogs. But I'm clueless about what to do with the title.
This used to require a plugin and whatnot, but as of Wordpress 2.5, this is built into core and into the theme.
So if you're getting your title in the form "My Blog >> My Post" it means that in your theme's header.php you have something like this
<title><?php bloginfo('name'); ?><?php wp_title(); ?></title>
Find that and reverse it
<title><?php wp_title(); ?><?php bloginfo('name'); ?></title>
Now this is going to give you something like
">>My Post >> My Blog"
To fix this, you have to send optional arguments to wp_title. It's arguments are like this
wp_title('sep', echo, 'seplocation')
Where
sep is the actual separator you want to use (-- or ¦¦ or ») in quotes.
echo has to do with how you want to return the information. Just set this to true without quotes
seplocation is whether the separator appears to the left or the right of the title. Since in your case, the title is first, you want the seplocation to be 'right' (in quotes).
So you end up with something like this in the end
<title><?php wp_title(' ¦¦ ',true,'right'); bloginfo('name'); ?></title>
You can use the headspace2 plugin to manage custom titles for archives, categories, front page, author archives and so forth.
I have no idea how to do this in blogger, but it looks like there are plenty of HOWTOs on the subject [google.com]. I think one of those results should work for you.
I'm not recommending one over the other and I go back and forth on it myself depending on the situation. There's a lot of overlap, each has at least one thing it does better than the others, and all three (counting Joost's combo of plugins as one) are absolutely top notch... just different. You may like one better than other, though if AIOSEOP is working well for you, I would probably leave well enough alone.
So I think even if you have a favorite, it's worth knowing about the others.