Oh there are two methods to remove raquo; from the title of wordpress posts.
1.
Instead of wp_title() in your theme’s header file (header.php) put echo wp_title(”,true);
This method is the easiest one to do, it just strips off the raquo; inserted by wordpress.
2.
Second method is to find that particular file in wp-includes thats inserting raquo; into title and removing raquo; from it. I have done it in previous versions of wordpress ( haven’t tried in 2.7) and feeling bit lazy to search for it. Hakuna matata as long as first one serves my purpose.
Second one is really an elegant way, try it yourself in your free time. Post a comment if you can spare minutes to tell others.
- Permalink
- The Analyst
- 8 Jan 2009 11:20 PM
- Comments (4)
June 23rd, 2009 at 7:48 am
This also helps:
wp_title(”,true);
August 25th, 2009 at 11:21 am
Yes Roman, substr( ) in substr(wp_title(”,false),2) takes atleast few nano secs more.
July 17th, 2010 at 8:03 am
wp_title(‘»’, true, ‘right’) or make wp_title like this, and raquo will be moved right.
December 6th, 2011 at 9:52 am
This is working solution solution: