Hi, check my Blog: http://www.web-city.it/blog/ottimizza-windows-xp/
You see, my page title (on the browser) says: "Web City - Il Blog >> Blog Archive >> Ottimizza i servizi di Windows XP". I want it to be: "Ottimizza i servizi di Windows XP - Web City - Il Blog".
How do I do this?
davestewart
Member
Posted 1 year ago #
To my (limited) knowledge, the page title is normally written in the header.php page, so you probably need to change it there.
Just change the contents of the HTML <title> tag to
<title><?php bloginfo('name'); ?></title>
Or check this page for options on your existing setup:
http://codex.wordpress.org/Template_Tags/wp_title
Thank you, now I have tryed to revert the order.
<title><?php wp_title(); ?> | <?php bloginfo('name'); ?></title>
My problem is that now my page title show like this:
">> Mypost name | Web City - Il Blog"
How do I remove that ">>"?
Oh, solved.
Thank you! :)
Would be nice to share your solution...
For me the easiest way to deal with custom title tags was this plugin:
http://www.netconcepts.com/seo-title-tag-plugin/
Klaymen
how did you get rid of ">>"
or anyone can help me ? plssssss
brianmcculloh
Member
Posted 1 year ago #
I am having the same problem. Got the order to switch, but now I'm stuck with ">>" in front of my page title.
Just check the page here:
http://codex.wordpress.org/Template_Tags/wp_title
For those of you that don't like to read or learn try this code:
<title>
<?php wp_title('--',true,'right'); ?>
<?php bloginfo('name'); ?>
</title>