• I am using WordPress version 2.5.1.

    When I click on a item on sidebar – archives, the page that opens have title something like this

    BLOG TITLE ? 2008? June

    You see there is a space missing between the year “2008” and the raquo.

    I opened up general-template.php and found this on line 219.

    $title = "$my_year" . ($my_month ? "$sep $my_month" : "") . ($my_day ? "$sep $my_day" : "");

    then I fixed this to

    $title = "$my_year " . ($my_month ? "$sep $my_month" : "") . ($my_day ? "$sep $my_day" : "");

    I added a space after $my_year.

    Isn’t this correct?

    Am I the only one w/ this problem?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Perhaps trying to add the   tag rather than just spacing might work.

    Thread Starter ataiger

    (@ataiger)

    Thanks, but…

    adding a space like what I’ve done works. I did not mean that it doesn’t work.

    What I meant was that why was there no space.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Need a space between year and raquo’ is closed to new replies.