Quote:
Originally Posted by grandmascrotum
I made a little list of the blogging questions that I keep wondering about and never find the time to fix. They are:
How do I get rid of the ">>" in my post headings?
e.g. This post:
http://www.msnaughty.com/blog/2007/0...more-than-men/
The title at the top reads ">> Feminoglers: Women ogle more than men : Ms Naughty Porn for Women Blog"
I hate that little >> thing.
|
Edit template-functions-general.php. Around line 139 you find
Code:
function wp_title($sep = '»', $display = true) {
Edit it to look like this
Code:
function wp_title($sep = '', $display = true) {
No more pesky >>
Putting a space in may solve your other problem so it would look like this
Code:
function wp_title($sep = ' ', $display = true) {